Skip to content

Commit

Permalink
Reduce number of trees in RF regressors
Browse files Browse the repository at this point in the history
Reduced to 150 to 50 trees, physics performance is not impacted, while memory needs will decrease (and speed increase)
  • Loading branch information
moralejo authored and morcuended committed Oct 1, 2024
1 parent deeb63f commit 8d11d8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lstchain/data/lstchain_standard_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"max_depth": 30,
"min_samples_leaf": 10,
"n_jobs": -1,
"n_estimators": 150,
"n_estimators": 50,
"bootstrap": true,
"criterion": "squared_error",
"max_features": 1.0,
Expand All @@ -90,7 +90,7 @@
"max_depth": 30,
"min_samples_leaf": 10,
"n_jobs": -1,
"n_estimators": 150,
"n_estimators": 50,
"bootstrap": true,
"criterion": "squared_error",
"max_features": 1.0,
Expand Down

0 comments on commit 8d11d8a

Please sign in to comment.