Upload config.json
Browse files- config.json +15 -0
config.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [Tfdf.keras.GradientBoostedTreesModel],
|
| 3 |
+
"growing_strategy": "BEST_FIRST_GLOBAL"
|
| 4 |
+
"num_trees": 250,
|
| 5 |
+
"min_examples": 6,
|
| 6 |
+
"max_depth": 5,
|
| 7 |
+
"subsample": 0.65,
|
| 8 |
+
"validation_ratio": 0.1,
|
| 9 |
+
"sampling_method": "RANDOM",
|
| 10 |
+
"batch_size": None
|
| 11 |
+
"num_epochs": 1,
|
| 12 |
+
"task": tfdf.keras.Task.CLASSIFICATION
|
| 13 |
+
"loss": "DEFAULT"
|
| 14 |
+
|
| 15 |
+
}
|