File size: 1,489 Bytes
b26b2df | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | {
"sklearn": {
"columns": [
"fixed acidity",
"volatile acidity",
"citric acid",
"residual sugar",
"chlorides",
"free sulfur dioxide",
"total sulfur dioxide",
"density",
"pH",
"sulphates",
"alcohol",
"wide_type",
"quality"
],
"environment": [
"scikit-learn=1.3.2"
],
"example_input": {
"fixed acidity": [
7.4,
7.8,
7.3
],
"volatile acidity": [
0.7,
0.88,
0.65
],
"citric acid": [
0.0,
0.0,
0.0
],
"residual sugar": [
1.9,
2.6,
1.2
],
"chlorides": [
0.076,
0.098,
0.065
],
"free sulfur dioxide": [
11,
25,
15
],
"total sulfur dioxide": [
34,
67,
21
],
"density": [
0.9978,
0.9968,
0.997
],
"pH": [
3.51,
3.2,
3.39
],
"sulphates": [
0.56,
0.68,
0.47
],
"alcohol": [
9.4,
9.8,
10.2
],
"wide_type": [
0,
0,
1
],
"quality": [
5,
5,
6
]
},
"model": {
"file": "model.pkl"
},
"task": "tabular-regression"
}
} |