fabsig/GPBoost

Get complete hyperparameter tuning history

Closed this issue · 2 comments

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?

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

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!