... This is my first commit using the python code and the SKOPS to make this process ...
Browse files- config.json +83 -0
- model_main_v2.joblib +3 -0
config.json
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"sklearn": {
|
3 |
+
"columns": [
|
4 |
+
"fixed acidity",
|
5 |
+
"volatile acidity",
|
6 |
+
"citric acid",
|
7 |
+
"residual sugar",
|
8 |
+
"chlorides",
|
9 |
+
"free sulfur dioxide",
|
10 |
+
"total sulfur dioxide",
|
11 |
+
"density",
|
12 |
+
"pH",
|
13 |
+
"sulphates",
|
14 |
+
"alcohol"
|
15 |
+
],
|
16 |
+
"environment": [
|
17 |
+
"scikit-learn=1.4.1.post1"
|
18 |
+
],
|
19 |
+
"example_input": {
|
20 |
+
"alcohol": [
|
21 |
+
10.8,
|
22 |
+
9.6,
|
23 |
+
11.7
|
24 |
+
],
|
25 |
+
"chlorides": [
|
26 |
+
0.171,
|
27 |
+
0.095,
|
28 |
+
0.063
|
29 |
+
],
|
30 |
+
"citric acid": [
|
31 |
+
0.43,
|
32 |
+
0.0,
|
33 |
+
0.33
|
34 |
+
],
|
35 |
+
"density": [
|
36 |
+
0.9982,
|
37 |
+
0.99854,
|
38 |
+
0.99516
|
39 |
+
],
|
40 |
+
"fixed acidity": [
|
41 |
+
10.8,
|
42 |
+
8.1,
|
43 |
+
9.1
|
44 |
+
],
|
45 |
+
"free sulfur dioxide": [
|
46 |
+
27.0,
|
47 |
+
5.0,
|
48 |
+
13.0
|
49 |
+
],
|
50 |
+
"pH": [
|
51 |
+
3.17,
|
52 |
+
3.36,
|
53 |
+
3.26
|
54 |
+
],
|
55 |
+
"residual sugar": [
|
56 |
+
2.1,
|
57 |
+
4.1,
|
58 |
+
2.05
|
59 |
+
],
|
60 |
+
"sulphates": [
|
61 |
+
0.76,
|
62 |
+
0.53,
|
63 |
+
0.84
|
64 |
+
],
|
65 |
+
"total sulfur dioxide": [
|
66 |
+
66.0,
|
67 |
+
14.0,
|
68 |
+
27.0
|
69 |
+
],
|
70 |
+
"volatile acidity": [
|
71 |
+
0.47,
|
72 |
+
0.82,
|
73 |
+
0.29
|
74 |
+
]
|
75 |
+
},
|
76 |
+
"model": {
|
77 |
+
"file": "model_main_v2.joblib"
|
78 |
+
},
|
79 |
+
"model_format": "pickle",
|
80 |
+
"task": "tabular-classification",
|
81 |
+
"use_intelex": false
|
82 |
+
}
|
83 |
+
}
|
model_main_v2.joblib
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c6ec07d98d0433aa265cab300e756332599cf5cc5728942cc444564a2e92e0fb
|
3 |
+
size 6363273
|