Skip to content

Commit b8e821c

Browse files
authored
add syntectic case for xgboost (#200)
Co-authored-by: Dmitry Razdoburdin <>
1 parent 5348e01 commit b8e821c

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"INCLUDE": ["../common/xgboost.json"],
3+
"PARAMETERS_SETS": {
4+
"xgboost data": [
5+
{
6+
"data": {
7+
"source": "make_regression",
8+
"generation_kwargs": [
9+
{
10+
"n_samples": 2097152, "n_features": 256
11+
},
12+
{
13+
"n_samples": 2097152, "n_features": 32
14+
}
15+
],
16+
"split_kwargs": { "train_size": 0.5, "test_size": 0.5 }
17+
},
18+
"algorithm": {
19+
"estimator_params": [
20+
{
21+
"n_estimators": 128,
22+
"max_depth": 8
23+
},
24+
{
25+
"n_estimators": 128,
26+
"max_depth": 3
27+
},
28+
{
29+
"n_estimators": 32,
30+
"max_depth": 8
31+
},
32+
{
33+
"n_estimators": 32,
34+
"max_depth": 3
35+
}
36+
]
37+
}
38+
}
39+
]
40+
},
41+
"TEMPLATES": {
42+
"regression": {
43+
"SETS": [
44+
"xgboost regression",
45+
"xgboost implementations",
46+
"xgboost data"
47+
]
48+
}
49+
}
50+
}

0 commit comments

Comments
 (0)