数据集:
mstz/glass
The Glass dataset from the UCI repository . Classify the type of glass.
Configuration | Task | Description |
---|---|---|
glass | Multiclass classification | Classify glass type. |
windows | Binary classification | Is this windows glass? |
vehicles | Binary classification | Is this vehicles glass? |
containers | Binary classification | Is this containers glass? |
tableware | Binary classification | Is this tableware glass? |
headlamps | Binary classification | Is this headlamps glass? |
from datasets import load_dataset dataset = load_dataset("mstz/glass", "glass")["train"]