[nikstla] (noun, nahuatl) Period of time.
State-of-the-art time series forecasting for pytorch.
NeuralForecast is a python library for time series forecasting with deep learning.
It provides dataset loading utilities, evaluation functions and pytorch implementations of state of the art deep learning forecasting models.
Here is a link to the documentation.
This code is a work in progress, any contributions or issues are welcome on GitHub at: https://github.com/Nixtla/neuralforecast.
You can install the released version of NeuralForecast from the Python package index with:
pip install neuralforecast(Installing inside a python virtualenvironment or a conda environment is recommended.)
If you want to make some modifications to the code and see the effects in real time (without reinstalling), follow the steps below:
git clone https://github.com/Nixtla/neuralforecast.git
cd neuralforecast
pip install -e .-
Exponential Smoothing Recurrent Neural Network (ES-RNN): A hybrid model that combines the expressivity of non linear models to capture the trends while it normalizes using a Holt-Winters inspired model for the levels and seasonals. This model is the winner of the M4 forecasting competition.
-
Neural Basis Expansion Analysis (N-BEATS): A model from Element-AI (Yoshua Bengio’s lab) that has proven to achieve state of the art performance on benchmark large scale forecasting datasets like Tourism, M3, and M4. The model is fast to train an has an interpretable configuration.
-
Neural Basis Expansion Analysis with Exogenous Variables (N-BEATSx): The neural basis expansion with exogenous variables is an extension to the original N-BEATS that allows it to include time dependent covariates.
This project is licensed under the GPLv3 License - see the LICENSE file for details.
See CONTRIBUTING.md.
If you use NeuralForecast in a scientific publication, we encourage you to add
the following references to the related papers:
@article{neuralforecast_arxiv,
author = {XXXX},
title = {{NeuralForecast: Deep Learning for Time Series Forecasting}},
journal = {arXiv preprint arXiv:XXX.XXX},
year = {2022}
}