Datasets:
File size: 1,007 Bytes
ee06934 2ac3764 ee06934 2ac3764 bbd4434 2ac3764 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
---
language:
- en
tags:
- arrhythmia
- tabular_classification
- multiclass_classification
pretty_name: Arrhythmia
size_categories:
- 100<n<1K
task_categories: # Full list at https://github.com/huggingface/hub-docs/blob/main/js/src/lib/interfaces/Types.ts
- tabular-classification
configs:
- arrhytmia
---
# Arrhythmia
The [Arrhythmia dataset](https://archive.ics.uci.edu/ml/datasets/Arrhythmia) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
# Configurations and tasks
| **Configuration** | **Task** | Description |
|-------------------|---------------------------|---------------------------------------------------------------|
| arrhytmia | Multiclass classification | Classify the arrhytmia type of the patient. |
# Usage
```python
from datasets import load_dataset
from sklearn.tree import DecisionTreeClassifier
dataset = load_dataset("mstz/arrhythmia", "arrhytmia")["train"]
``` |