-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparamgroups.json
More file actions
74 lines (74 loc) · 2.78 KB
/
paramgroups.json
File metadata and controls
74 lines (74 loc) · 2.78 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[
{
"name": "Inputs (for cross-validation, only use 'Training Data'):",
"description": "To perform cross-validation, only provide the data and class files in 'Training Data.' Otherwise, for test-train prediction, provide inputs in both 'Training Data' (or 'Model Input') and 'Testing Data.'",
"hidden": false
},
{
"name": "Inputs (for cross-validation, only use 'Training Data'):/Training Data",
"description": "Provide data (feature) and class (target) files for training dataset.",
"hidden": false,
"parameters": [
"train.data.file",
"train.class.file",
"model.output",
"model.output.filename"
]
},
{
"name": "Inputs (for cross-validation, only use 'Training Data'):/Model Input",
"description": "Provide model input as pickle file (takes priority over Training Data if both are provided).",
"hidden": true,
"parameters": [
"model.input.file"
]
},
{
"name": "Inputs (for cross-validation, only use 'Training Data'):/Testing Data",
"description": "Provide data (feature) and class (target) files for test dataset (only needed for test-train prediction, not cross-validation).",
"hidden": false,
"parameters": [
"test.data.file",
"test.class.file"
]
},
{
"name": "Inputs (for cross-validation, only use 'Training Data'):/Result Filenames",
"description": "Provide result filenames. Default is to use training data base filename.",
"hidden": true,
"parameters": [
"prediction.results.filename",
"feature.importance.filename"
]
},
{
"name": "Optional Classifier Parameters:",
"description": "The following parameters for classifier specifications are optional as default values are passed in. For details, please refer to <a href=https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.RandomForestClassifier.html>this</a>",
"hidden": true,
"parameters": [
"bootstrap",
"ccp_alpha",
"class_weight",
"criterion",
"max_depth",
"max_features",
"max_leaf_nodes",
"max_samples",
"min_impurity_decrease",
"min_samples_leaf",
"min_samples_split",
"min_weight_fraction_leaf",
"n_estimators",
"random_state"
]
},
{
"name": "Error Reporting:",
"description": "Contains developer debugging parameter.",
"hidden": true,
"parameters": [
"debug",
"verbose"
]
}
]