EngrSamad commited on
Commit
491b854
1 Parent(s): 2b9abe3

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +29 -0
config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sklearn": {
3
+ "columns": [
4
+ "Age",
5
+ "Pclass"
6
+ ],
7
+ "environment": [
8
+ "scikit-learn=1.4.1.post1"
9
+ ],
10
+ "example_input": {
11
+ "Age": [
12
+ 24.0,
13
+ 31.0,
14
+ 20.0
15
+ ],
16
+ "Pclass": [
17
+ 3,
18
+ 2,
19
+ 3
20
+ ]
21
+ },
22
+ "model": {
23
+ "file": "logreg.pkl"
24
+ },
25
+ "model_format": "pickle",
26
+ "task": "tabular-classification",
27
+ "use_intelex": false
28
+ }
29
+ }