code-craftsmen / config.json
Hilbs's picture
Update config.json
7495882 verified
raw
history blame
1.62 kB
{
"sklearn": {
"columns": [
"age",
"gender",
"height",
"weight",
"ap_hi",
"ap_lo",
"cholesterol",
"gluc",
"smoke",
"alco",
"active"
],
"environment": [
"scikit-learn=1.2.2"
],
"example_input": {
"active": [
1,
1,
1
],
"age": [
21776,
19732,
17302
],
"alco": [
0,
0,
0
],
"ap_hi": [
120,
120,
130
],
"ap_lo": [
70,
80,
90
],
"cholesterol": [
1,
1,
1
],
"gender": [
1,
1,
1
],
"gluc": [
1,
1,
1
],
"height": [
160,
167,
158
],
"smoke": [
0,
0,
0
],
"weight": [
60.0,
65.0,
56.0
]
},
"model": {
"file": "model 82.5 acc.pkl"
},
"model_format": "pickle",
"task": "tabular-regression"
}
}