File size: 857 Bytes
acea606
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
    "model_type": "RandomForestClassifier",
    "expected_features": [
        "age", 
        "sex", 
        "serum_bilirubin", 
        "serum_cholesterol", 
        "albumin", 
        "alkaline_phosphatase", 
        "SGOT", 
        "platelets", 
        "prothrombin_time"
    ],
    "categorical_features": [
        "drug", 
        "sex", 
        "presence_of_ascites", 
        "presence_of_hepatomegaly", 
        "presence_of_spiders", 
        "presence_of_edema"
    ],
    "model_parameters": {
        "criterion": "entropy",
        "max_features": 0.1,
        "min_samples_split": 8,
        "min_samples_leaf": 6,
        "bootstrap": true
    },
    "version": "1.0",
    "preprocessing": {
        "numerical": "median imputation and scaling",
        "categorical": "one-hot encoding",
        "ordinal": "label encoding"
    }
}