How to choose the best hyper-parameter when it is directly influenced by the random_state?
While trying to evaluate my Ridge Regression model and using GridSearchCV to find the best parameter. I noticed that the best estimator changes every time I change the random_state
in my KFold
object (cv
parameter). With this in mind how do I choose the most optimal hyper parameter to implement my model.
Topic hyperparameter-tuning grid-search machine-learning
Category Data Science