Angelo901 commited on
Commit
885f683
·
verified ·
1 Parent(s): eb14d64

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +33 -0
config.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ config = {
2
+ "sklearn": {
3
+ "columns": [
4
+ "x0",
5
+ "x1",
6
+ "char"
7
+ ],
8
+ "environment": [
9
+ "scikit-learn=1.0.2"
10
+ ],
11
+ "example_input": {
12
+ "x0": [
13
+ 6.14,
14
+ 2.22,
15
+ 2.27
16
+ ],
17
+ "x1": [
18
+ 2.2,
19
+ 2.0,
20
+ 5.9
21
+ ],
22
+ "char": [
23
+ 'A',
24
+ 'B',
25
+ 'A'
26
+ ]
27
+ },
28
+ "model": {
29
+ "file": "model.pkl"
30
+ },
31
+ "task": "tabular-classification"
32
+ }
33
+ }