数据集:
mstz/balance_scale
The Balance scale dataset from the UCI ML repository .
Two weights are put on the arms of a scale. Where does the scale tilt?
Configuration | Task | Description |
---|---|---|
balance | Multiclass classification | Where does the scale tilt? |
is_balanced | Binary classification | Does the scale tilt? |
from datasets import load_dataset dataset = load_dataset("mstz/balance_scale", "balance")["train"]
Target feature changes according to the selected configuration and is always in last position in the dataset.