Krishna6559 commited on
Commit
31ad9fa
·
verified ·
1 Parent(s): 2b6f77e

Upload param_grid.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. param_grid.json +24 -0
param_grid.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clf__n_estimators": [
3
+ 200,
4
+ 400
5
+ ],
6
+ "clf__max_depth": [
7
+ null,
8
+ 5,
9
+ 10
10
+ ],
11
+ "clf__min_samples_split": [
12
+ 2,
13
+ 5
14
+ ],
15
+ "clf__min_samples_leaf": [
16
+ 1,
17
+ 2
18
+ ],
19
+ "clf__max_features": [
20
+ "sqrt",
21
+ "log2",
22
+ 0.5
23
+ ]
24
+ }