-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathxgboost_binary.json
More file actions
74 lines (74 loc) · 2.31 KB
/
xgboost_binary.json
File metadata and controls
74 lines (74 loc) · 2.31 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
{
"INCLUDE": ["../common/xgboost.json"],
"PARAMETERS_SETS": {
"gbt binary classification data": [
{
"data": {
"dataset": "airline_depdelay",
"preprocessing_kwargs": {
"category_encoding": ["onehot", "ordinal"],
"subsample": 600000
},
"split_kwargs": {
"train_size": 100000,
"test_size": 500000
}
},
"algorithm": {
"estimator_params": {
"learning_rate": 0.1,
"max_depth": 8,
"reg_alpha": 1.0,
"reg_lambda": 1.0,
"n_estimators": 500
}
}
},
{
"data": {
"dataset": "hepmass",
"split_kwargs": {
"train_size": 200000,
"test_size": 1000000
}
},
"algorithm": {
"estimator_params": {
"learning_rate": 0.1,
"reg_alpha": 1.0,
"reg_lambda": 1.0,
"max_leaves": 256,
"n_estimators": 500
}
}
},
{
"data": {
"dataset": "gisette",
"split_kwargs": {
"train_size": 2000,
"test_size": 5000
}
},
"algorithm": {
"estimator_params": {
"learning_rate": 0.15,
"max_leaves": 256,
"colsample_bytree": 0.1,
"colsample_bynode": 0.1,
"n_estimators": 100
}
}
}
]
},
"TEMPLATES": {
"binary classification": {
"SETS": [
"xgboost binary classification",
"xgboost implementations",
"gbt binary classification data"
]
}
}
}