Are CNNs good for time series?

CNNs don’t have the assumption that history is complete: Unlike RNNs, CNNs learn patterns within the time window. If you have missing data, CNNs should be useful . In a way, CNNs can look forward: RNN models only learn from data before the timestep it needs to predict.

Read more

What is darts machine learning?

darts is a Python library for easy manipulation and forecasting of time series . It contains a variety of models, from classics such as ARIMA to deep neural networks. The models can all be used in the same way, using fit() and predict() functions, similar to scikit-learn.

Read more