abhatt13 commited on
Commit
92d020b
·
1 Parent(s): d2ca80f

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +39 -0
config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sklearn": {
3
+ "columns": [
4
+ "AgeCategory",
5
+ "Stroke",
6
+ "Diabetic_Yes",
7
+ "KidneyDisease",
8
+ "Smoking",
9
+ "SkinCancer",
10
+ "Is_Male",
11
+ "BMI",
12
+ "Asthma",
13
+ "Race_White",
14
+ "AlcoholDrinking",
15
+ "GenHealth"
16
+ ],
17
+ "environment": [
18
+ "scikit-learn=1.2.0"
19
+ ],
20
+ "example_input":{
21
+ "AgeCategory": "0",
22
+ "Stroke": "1",
23
+ "Diabetic_Yes": "1",
24
+ "KidneyDisease": "0",
25
+ "Smoking": "1",
26
+ "SkinCancer": "1",
27
+ "Is_Male": "1",
28
+ "BMI": "1",
29
+ "Asthma": "1",
30
+ "Race_White": "1",
31
+ "AlcoholDrinking": "1",
32
+ "GenHealth": "0"
33
+ },
34
+ "model": {
35
+ "file": "rf_model_to_predict_heartDisease.pkl"
36
+ },
37
+ "task": "tabular-classification"
38
+ }
39
+ }