DataCanvasIO / HyperTS

A Full-Pipeline Automated Time Series (AutoTS) Analysis Toolkit.
https://hyperts.readthedocs.io
Apache License 2.0
264 stars 28 forks source link

why not ensemble learning(like xgboost) in ts forecast? #44

Closed huyaoyao0904 closed 2 years ago

zhangxjohn commented 2 years ago

HyperTS has implemented some of the best proven time series models(e.g., ARIMA, Prophet, GRU) in the current version, but supports custom models to be placed into the search space. If you want to add an XGBoost model, refer to custom_search_space.

huyaoyao0904 commented 2 years ago

HyperTS has implemented some of the best proven time series models(e.g., ARIMA, Prophet, GRU) in the current version, but supports custom models to be placed into the search space. If you want to add an XGBoost model, refer to custom_search_space.

OK,thanks.