SunnyShaurya commited on
Commit
13ae6c7
·
verified ·
1 Parent(s): 03c073b

Upload experiment_log.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. experiment_log.json +26 -21
experiment_log.json CHANGED
@@ -1,26 +1,31 @@
1
  {
2
  "model": "XGBoost",
3
- "best_parameters": {
4
- "colsample_bytree": 0.8,
5
- "learning_rate": 0.1,
6
- "max_depth": 9,
7
- "n_estimators": 300,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  "subsample": 0.8
9
  },
10
- "metrics": {
11
- "accuracy": 0.6406449961607371,
12
- "precision": 0.7194363862411935,
13
- "recall": 0.7048315062931384,
14
- "f1_score": 0.712059064807219,
15
- "confusion_matrix": [
16
- [
17
- 767,
18
- 677
19
- ],
20
- [
21
- 727,
22
- 1736
23
- ]
24
- ]
25
- }
26
  }
 
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
  }