Create config.json
Browse files- config.json +18 -0
config.json
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"sklearn": {
|
3 |
+
"columns": ['Pclass', 'Sex', 'Age', 'SibSp', 'Parch', 'Embarked', 'CabinBool', 'FareBand'],
|
4 |
+
"environment": ['scikit-learn="1.1.1"', "numpy", "pandas"],
|
5 |
+
"example_input": {
|
6 |
+
"Pclass": [3,2,1],
|
7 |
+
"Sex": [1,0,1],
|
8 |
+
"Age": [1,2,3],
|
9 |
+
"SibSp": [0,1,0],
|
10 |
+
"Parch": [1,0,2],
|
11 |
+
"Embarked": [1,2,3],
|
12 |
+
"CabinBool": [1,0,1],
|
13 |
+
"FareBand": [1,2,4]
|
14 |
+
},
|
15 |
+
"model": {"file": "randomforest.joblib"},
|
16 |
+
"task": "tabular-classification",
|
17 |
+
}
|
18 |
+
}
|