Create config.json
Browse files- config.json +25 -0
config.json
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"sklearn": {
|
3 |
+
"columns": ["fixed_acidity", "volatile_acidity", "citric_acid", "residual_sugar", "chlorides", "free_sulfur_dioxide", "total_sulfur_dioxide", "density", "pH", "sulphates", "alcohol"],
|
4 |
+
"environment": [
|
5 |
+
"scikit-learn=0.24.2"
|
6 |
+
],
|
7 |
+
"example_input": {
|
8 |
+
"fixed_acidity": ["7.4", "7.8", "10.3"],
|
9 |
+
"volatile_acidity": ["0.7", "0.88", "0.32"],
|
10 |
+
"citric_acid": ["0", "0", "0.45"],
|
11 |
+
"residual_sugar": ["1.9", "2.6", "6.4"],
|
12 |
+
"chlorides": ["0.076", "0.098", "0.073"],
|
13 |
+
"free_sulfur_dioxide": ["11", "25", "5"],
|
14 |
+
"total_sulfur_dioxide": ["34", "67", "13"],
|
15 |
+
"density": ["0.9978", "0.9968", "0.9976"],
|
16 |
+
"pH": ["3.51", "3.2", "3.23"],
|
17 |
+
"sulphates": ["0.56", "0.68", "0.82"],
|
18 |
+
"alcohol": ["9.4", "9.8", "12.6"]
|
19 |
+
},
|
20 |
+
"model": {
|
21 |
+
"file": "sklearn_model.joblib"
|
22 |
+
},
|
23 |
+
"task": "tabular-classification"
|
24 |
+
}
|
25 |
+
}
|