high77 commited on
Commit
8348da1
·
verified ·
1 Parent(s): d286e95

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. config.json +144 -0
  2. model.pkl +3 -0
config.json ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sklearn": {
3
+ "columns": [
4
+ "Patient Id",
5
+ "Age",
6
+ "Total cholesterol",
7
+ "HDL",
8
+ "LDL",
9
+ "VLDL",
10
+ "TRIGLYCERIDES",
11
+ "before glycemic control random blood sugar",
12
+ "before glycemic control HbA1c",
13
+ "alcohol consumption",
14
+ "family_history_diabetes",
15
+ "Gender_FEMALE",
16
+ "Gender_MALE",
17
+ "dietary habits_non-vegetarian",
18
+ "dietary habits_non-vegetarian ",
19
+ "dietary habits_vegetarian",
20
+ "smoking status_no",
21
+ "smoking status_yes",
22
+ "family_history_cardiovascular_disease_no",
23
+ "family_history_cardiovascular_disease_yes",
24
+ "binary_status"
25
+ ],
26
+ "environment": [
27
+ "xgboost",
28
+ "scikit-learn",
29
+ "numpy"
30
+ ],
31
+ "example_input": {
32
+ "Age": [
33
+ 37,
34
+ 40,
35
+ 40
36
+ ],
37
+ "Gender_FEMALE": [
38
+ false,
39
+ false,
40
+ true
41
+ ],
42
+ "Gender_MALE": [
43
+ true,
44
+ true,
45
+ false
46
+ ],
47
+ "HDL": [
48
+ 80,
49
+ 50,
50
+ 40
51
+ ],
52
+ "LDL": [
53
+ 160,
54
+ 135,
55
+ 188
56
+ ],
57
+ "Patient Id": [
58
+ 1,
59
+ 2,
60
+ 3
61
+ ],
62
+ "TRIGLYCERIDES": [
63
+ 190.0,
64
+ 180.0,
65
+ 160.0
66
+ ],
67
+ "Total cholesterol": [
68
+ 380,
69
+ 250,
70
+ 280
71
+ ],
72
+ "VLDL": [
73
+ 85.0,
74
+ 45.0,
75
+ 45.0
76
+ ],
77
+ "alcohol consumption": [
78
+ 0.0,
79
+ 0.0,
80
+ 0.0
81
+ ],
82
+ "before glycemic control HbA1c": [
83
+ 5.2,
84
+ 5.2,
85
+ 5.6
86
+ ],
87
+ "before glycemic control random blood sugar": [
88
+ 128.0,
89
+ 120.0,
90
+ 100.0
91
+ ],
92
+ "binary_status": [
93
+ 1,
94
+ 1,
95
+ 1
96
+ ],
97
+ "dietary habits_non-vegetarian": [
98
+ false,
99
+ true,
100
+ true
101
+ ],
102
+ "dietary habits_non-vegetarian ": [
103
+ true,
104
+ false,
105
+ false
106
+ ],
107
+ "dietary habits_vegetarian": [
108
+ false,
109
+ false,
110
+ false
111
+ ],
112
+ "family_history_cardiovascular_disease_no": [
113
+ false,
114
+ true,
115
+ false
116
+ ],
117
+ "family_history_cardiovascular_disease_yes": [
118
+ true,
119
+ false,
120
+ true
121
+ ],
122
+ "family_history_diabetes": [
123
+ 0.0,
124
+ 0.0,
125
+ 0.0
126
+ ],
127
+ "smoking status_no": [
128
+ true,
129
+ true,
130
+ true
131
+ ],
132
+ "smoking status_yes": [
133
+ false,
134
+ false,
135
+ false
136
+ ]
137
+ },
138
+ "model": {
139
+ "file": "model.pkl"
140
+ },
141
+ "model_format": "pickle",
142
+ "task": "tabular-classification"
143
+ }
144
+ }
model.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12e6580a74c6b79b2de8673bfb33d1d3b8bac32aacc4b3c092353b07f50a208a
3
+ size 140806