Upload config.json with huggingface_hub
Browse files- config.json +15 -0
config.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset": "iris",
|
| 3 |
+
"model_type": "LogisticRegression",
|
| 4 |
+
"features": [
|
| 5 |
+
"sepal length (cm)",
|
| 6 |
+
"sepal width (cm)",
|
| 7 |
+
"petal length (cm)",
|
| 8 |
+
"petal width (cm)"
|
| 9 |
+
],
|
| 10 |
+
"target_names": [
|
| 11 |
+
"setosa",
|
| 12 |
+
"versicolor",
|
| 13 |
+
"virginica"
|
| 14 |
+
]
|
| 15 |
+
}
|