File size: 771 Bytes
42413d0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
{
"columns": [
"sepal_length",
"sepal_width",
"petal_length",
"petal_width",
"label"
],
"dataset": "iris",
"format": "csv",
"notes": "UCI Iris; labels kept for evaluation (k-means ignores during training).",
"source": {
"iris.data": {
"sha256": "6f608b71a7317216319b4d27b4d9bc84e6abd734eda7872b71a458569e2656c0",
"url": "https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data"
}
},
"splits": {
"test": {
"n": 23,
"path": "prepared/test.csv"
},
"train": {
"n": 105,
"path": "prepared/train.csv"
},
"val": {
"n": 22,
"path": "prepared/val.csv"
}
},
"task": {
"target_column": "label",
"type": "multiclass_classification"
}
}
|