Commit
·
ccb20d7
1
Parent(s):
531b956
pushing files to the repo from the example!
Browse files- config.json +41 -0
- logreg.skops +0 -0
config.json
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"sklearn": {
|
3 |
+
"columns": [
|
4 |
+
"x0",
|
5 |
+
"x1",
|
6 |
+
"x2",
|
7 |
+
"x3"
|
8 |
+
],
|
9 |
+
"environment": [
|
10 |
+
"scikit-learn=1.3.0"
|
11 |
+
],
|
12 |
+
"example_input": {
|
13 |
+
"x0": [
|
14 |
+
5.1,
|
15 |
+
4.9,
|
16 |
+
4.7
|
17 |
+
],
|
18 |
+
"x1": [
|
19 |
+
3.5,
|
20 |
+
3.0,
|
21 |
+
3.2
|
22 |
+
],
|
23 |
+
"x2": [
|
24 |
+
1.4,
|
25 |
+
1.4,
|
26 |
+
1.3
|
27 |
+
],
|
28 |
+
"x3": [
|
29 |
+
0.2,
|
30 |
+
0.2,
|
31 |
+
0.2
|
32 |
+
]
|
33 |
+
},
|
34 |
+
"model": {
|
35 |
+
"file": "logreg.skops"
|
36 |
+
},
|
37 |
+
"model_format": "skops",
|
38 |
+
"task": "tabular-classification",
|
39 |
+
"use_intelex": false
|
40 |
+
}
|
41 |
+
}
|
logreg.skops
ADDED
Binary file (9.34 kB). View file
|
|