-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to use hyperparams #30
Comments
Hi @ramdhan1989 Thanks for your interest in our tool, and forgive-me for the long delay. First of all, before hyperparameter optimization (hereafter called hyperopt), you should perform the time series analysis (such as ACF/PACF plots, tests of stationarity and scedasticity, etc). Hyperopt does not unuseful to know how your time-series data behaves. The hyperparameter optimization of FTS is described here, and is called DEHO - Distributed Evolutionary Hyperparameter Optimization, but there are other methods then evolutionary in the library. The return of the method will be a dictionary with the best parameters found for forecasting the dataset using the selected FTS method (in the parameter fts_method). Below a list of the implemented methods:
There is no GridSearch implementation yet for multivariate methods.
Please, do not hesitate to get in touch if you have any questions. Best regards |
Thanks, all those three method work ! below is the return dict : |
Hi @ramdhan1989 Using this dictionary you can build a model with this code:
Best regards |
well thanks a lot @petroniocandido . does the hyperparams optimization search the best data transformation as well ? such as how many lags for differential ? or may be what kind of transformations is the best for the problem ? thank you |
Hi @petroniocandido , how can I get stable prediction using GA ? every time I run it will result different values. do you have suggestion ? |
Hi @petroniocandido , I come back to try using this package. Just want to clarify several things :
appreciate for your answers thank you |
I am struggle to find guidance about how to use hyperparam modul such as grid search or evolutionary. anyone can share ?
thank you
The text was updated successfully, but these errors were encountered: