数据集:
mstz/arhythmia
The Arrhythmia dataset from the UCI ML repository . Does the patient have arhythmia? If so, what type?
| Configuration | Task | Description |
|---|---|---|
| arhytmia | Multiclass classification | What type of arhythmia does the patient have? |
| has_arhytmia | Binary classification | Does the patient have arhythmia? |
from datasets import load_dataset
dataset = load_dataset("mstz/arhythmia", "arhythmia")["train"]
Target feature changes according to the selected configuration and is always in last position in the dataset.