Upload experiment_log.json with huggingface_hub
Browse files- experiment_log.json +31 -0
experiment_log.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model": "XGBoost",
|
| 3 |
+
"param_grid": {
|
| 4 |
+
"n_estimators": [
|
| 5 |
+
100,
|
| 6 |
+
200,
|
| 7 |
+
300
|
| 8 |
+
],
|
| 9 |
+
"max_depth": [
|
| 10 |
+
3,
|
| 11 |
+
5,
|
| 12 |
+
7
|
| 13 |
+
],
|
| 14 |
+
"learning_rate": [
|
| 15 |
+
0.01,
|
| 16 |
+
0.1,
|
| 17 |
+
0.2
|
| 18 |
+
],
|
| 19 |
+
"subsample": [
|
| 20 |
+
0.8,
|
| 21 |
+
1.0
|
| 22 |
+
]
|
| 23 |
+
},
|
| 24 |
+
"best_params": {
|
| 25 |
+
"learning_rate": 0.01,
|
| 26 |
+
"max_depth": 5,
|
| 27 |
+
"n_estimators": 100,
|
| 28 |
+
"subsample": 0.8
|
| 29 |
+
},
|
| 30 |
+
"best_cv_score": 0.7776112578367997
|
| 31 |
+
}
|