数据集:
mstz/australian_credit
The Australian Credit from the UCI ML repository . Classification of loan approval.
| Configuration | Task | Description |
|---|---|---|
| australian_credit | Binary classification | Is the loan granted? |
from datasets import load_dataset
dataset = load_dataset("mstz/australian_credit")["train"]
Target feature changes according to the selected configuration and is always in last position in the dataset.