Commit
·
ff33dc8
1
Parent(s):
d5ff6b6
Upload config.json
Browse files- config.json +28 -0
config.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"sklearn": {
|
| 3 |
+
"columns": [
|
| 4 |
+
"x0"
|
| 5 |
+
],
|
| 6 |
+
"environment": [
|
| 7 |
+
"scikit-learn",
|
| 8 |
+
"numpy"
|
| 9 |
+
],
|
| 10 |
+
"example_input": {
|
| 11 |
+
"x0": [
|
| 12 |
+
[
|
| 13 |
+
6.3
|
| 14 |
+
],
|
| 15 |
+
[
|
| 16 |
+
6.5
|
| 17 |
+
],
|
| 18 |
+
[
|
| 19 |
+
5.6
|
| 20 |
+
]
|
| 21 |
+
]
|
| 22 |
+
},
|
| 23 |
+
"model": {
|
| 24 |
+
"file": "structured_arr_model.joblib"
|
| 25 |
+
},
|
| 26 |
+
"task": "tabular-classification"
|
| 27 |
+
}
|
| 28 |
+
}
|