Get complete hyperparameter tuning history
Closed this issue · 2 comments
diggi2395 commented
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
Not yet. Thanks for the suggestion. Will get back to you
fabsig commented
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!