[7.x][ML] Update mappings of ml stats index (#61980) (#62091)

- Adds missing mappings for `alpha`, `gamma`, and `lambda`.
- Corrects name of `soft_tree_depth_limit` and `soft_tree_depth_tolerance`.
- Removes unused `regularization_depth_penalty_multiplier`,
  `regularization_leaf_weight_penalty_multiplier` and
  `regularization_tree_size_penalty_multiplier`.

Backport of #61980
This commit is contained in:
Dimitris Athanasiou 2020-09-08 16:41:57 +03:00 committed by GitHub
parent b2636678b2
commit 41507cff48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 11 deletions

View File

@ -10,6 +10,9 @@
},
"hyperparameters": {
"properties": {
"alpha": {
"type": "double"
},
"class_assignment_objective": {
"type": "keyword"
},
@ -25,6 +28,12 @@
"feature_bag_fraction": {
"type": "double"
},
"gamma": {
"type": "double"
},
"lambda": {
"type": "double"
},
"max_attempts_to_add_tree": {
"type": "integer"
},
@ -40,19 +49,10 @@
"num_splits_per_feature": {
"type": "integer"
},
"regularization_depth_penalty_multiplier": {
"soft_tree_depth_limit": {
"type": "double"
},
"regularization_leaf_weight_penalty_multiplier": {
"type": "double"
},
"regularization_soft_tree_depth_limit": {
"type": "double"
},
"regularization_soft_tree_depth_tolerance": {
"type": "double"
},
"regularization_tree_size_penalty_multiplier": {
"soft_tree_depth_tolerance": {
"type": "double"
}
}