Hyperparameter tuning in River #577
-
Hello, is there a way of being able to perform hyperparameter tuning in river. An equivalent of Grid search probably or any other function to perform hyperparameter tuning. Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Check the "expert" module. It provides some ways of tuning for classification or regression tasks. For example, "SuccessiveHalvingClassifier" gives you the possibility of performing hyperparameter tuning through the Succesive Halving approach. If you are looking for RandomizedGridSearch, GridSearch or similar, to the best of my knowledge, they are not available. |
Beta Was this translation helpful? Give feedback.
-
As you know (you saw my previous question on hyperparameter with sklearn techniques), there should be compatibility between sklearn tuning techniques (RandomizedGridSearch, GridSearch) and river estimators, but I have not been able to overcome some problems by now. |
Beta Was this translation helpful? Give feedback.
As you know (you saw my previous question on hyperparameter with sklearn techniques), there should be compatibility between sklearn tuning techniques (RandomizedGridSearch, GridSearch) and river estimators, but I have not been able to overcome some problems by now.