Datasets:
Upload 3 files
Browse files
README.md
CHANGED
@@ -11,20 +11,20 @@ size_categories:
|
|
11 |
task_categories: # Full list at https://github.com/huggingface/hub-docs/blob/main/js/src/lib/interfaces/Types.ts
|
12 |
- tabular-classification
|
13 |
configs:
|
14 |
-
-
|
15 |
---
|
16 |
-
#
|
17 |
The [Arrhythmia dataset](https://archive.ics.uci.edu/ml/datasets/Arrhythmia) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
|
18 |
|
19 |
# Configurations and tasks
|
20 |
| **Configuration** | **Task** | Description |
|
21 |
|-------------------|---------------------------|---------------------------------------------------------------|
|
22 |
-
|
|
23 |
|
24 |
# Usage
|
25 |
```python
|
26 |
from datasets import load_dataset
|
27 |
from sklearn.tree import DecisionTreeClassifier
|
28 |
|
29 |
-
dataset = load_dataset("mstz/
|
30 |
```
|
|
|
11 |
task_categories: # Full list at https://github.com/huggingface/hub-docs/blob/main/js/src/lib/interfaces/Types.ts
|
12 |
- tabular-classification
|
13 |
configs:
|
14 |
+
- arhytmia
|
15 |
---
|
16 |
+
# Arhythmia
|
17 |
The [Arrhythmia dataset](https://archive.ics.uci.edu/ml/datasets/Arrhythmia) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
|
18 |
|
19 |
# Configurations and tasks
|
20 |
| **Configuration** | **Task** | Description |
|
21 |
|-------------------|---------------------------|---------------------------------------------------------------|
|
22 |
+
| arhytmia | Multiclass classification | Classify the arhytmia type of the patient. |
|
23 |
|
24 |
# Usage
|
25 |
```python
|
26 |
from datasets import load_dataset
|
27 |
from sklearn.tree import DecisionTreeClassifier
|
28 |
|
29 |
+
dataset = load_dataset("mstz/arhythmia", "arhytmia")["train"]
|
30 |
```
|