fabsig / GPBoost

Combining tree-boosting with Gaussian process and mixed effects models
Other
571 stars 46 forks source link

Get complete hyperparameter tuning history #138

Closed diggi2395 closed 5 months ago

diggi2395 commented 6 months ago

I am using gpb.grid.search.tune.parameters() which returns the best hyperparameter combinations identified. However, I'd like to get the results of each combination. Is such a functionality already implemented?

fabsig commented 6 months ago

Not yet. Thanks for the suggestion. Will get back to you

fabsig commented 5 months ago

This feature is now implemented (version 1.5.0 or latter, it is on CRAN & PyPI). You just need to set return_all_combinations = True in the gpb.grid.search.tune.parameters function. Then the full parameter combination that has been tried is returned together with the best combination.

Thank you for using GPBoost and for raising this issue!