Hyperparamter Turning #1244
Answered
by
Alan-Wolf-VN
withkelvin
asked this question in
Q&A - get help using NeuralProphet
-
I just found out about NeuralProphet few days back and decided to give this model a try. However, I am not sure how to tune the hyperparameters, whether to use GridSearchCV or not. May i know what is the preferred way to tune? |
Beta Was this translation helpful? Give feedback.
Answered by
Alan-Wolf-VN
Apr 5, 2023
Replies: 1 comment 3 replies
-
I'm using optuna for hyperparameter tuning. It is much better than GridSearchCV. You can try tuning some hyperparameters such as trend_reg, seasonality_reg, seasonality_mode,n_lags,... Read the documentation to find out which hyperparameters relevant to your problem. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
judussoari
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm using optuna for hyperparameter tuning. It is much better than GridSearchCV. You can try tuning some hyperparameters such as trend_reg, seasonality_reg, seasonality_mode,n_lags,... Read the documentation to find out which hyperparameters relevant to your problem.