Viewing a single comment thread. View all comments

Elegant_String4964 t1_it2ucfw wrote

Hi, creator of Darts here. I just wanted to add my two cents on top of what was already said:
* Darts is made in a way such that it's trivial to use simple models (ARIMA, linear regression, etc), which is definitely what you should start with first
* It incorporates most of the models from statsforecast too
* It allows you to use any sklearn-like model (or LGBM, Catboost, XGBoost), featurize the time axis for
* Works seamlessly if your time series are multi-dimensional, or if you have multiple time series (e.g. multiple observations of some signal)
* In the event where you want to try deep learning models, it also has you covered, works on GPUs etc.

Hope this helps.

6

tblume1992 t1_it87xj1 wrote

Hey I know you guys are very open about adding new models (which I would love to add some) but for adding ways to featurize time I don't remember seeing much documentation for that piece, is the process the same? Don't mean to hijack the post just curious!

1