A python library for easy manipulation and forecasting of time series.
Project description
Time Series Made Easy in Python
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. The library also makes it easy to backtest models,
combine the predictions of several models, and take external data into account.
Darts supports both univariate and multivariate time series and models.
The ML-based models can be trained on potentially large datasets containing multiple time
series, and some of the models offer a rich support for probabilistic forecasting.
Documentation
High Level Introductions
Articles on Selected Topics
- Training Models on Multiple Time Series
- Using Past and Future Covariates
- Temporal Convolutional Networks and Forecasting
- Probabilistic Forecasting
- Transfer Learning for Time Series Forecasting
Quick Install
We recommend to first setup a clean Python environment for your project with at least Python 3.7 using your favorite tool (conda, venv, virtualenv with or without virtualenvwrapper).
Once your environment is set up you can install darts using pip:
pip install darts
For more details you can refer to our installation instructions.
Example Usage
Create a TimeSeries
object from a Pandas DataFrame, and split it in train/validation series:
import pandas as pd
from darts import TimeSeries
# Read a pandas DataFrame
df = pd.read_csv('AirPassengers.csv', delimiter=",")
# Create a TimeSeries, specifying the time and value columns
series = TimeSeries.from_dataframe(df, 'Month', '#Passengers')
# Set aside the last 36 months as a validation series
train, val = series[:-36], series[-36:]
Fit an exponential smoothing model, and make a (probabilistic) prediction over the validation series' duration:
from darts.models import ExponentialSmoothing
model = ExponentialSmoothing()
model.fit(train)
prediction = model.predict(len(val), num_samples=1000)
Plot the median, 5th and 95th percentiles:
import matplotlib.pyplot as plt
series.plot()
prediction.plot(label='forecast', low_quantile=0.05, high_quantile=0.95)
plt.legend()
Features
- Forecasting Models: A large collection of forecasting models; from statistical models (such as ARIMA) to deep learning models (such as N-BEATS). See table of models below.
- Multivariate Support:
TimeSeries
can be multivariate - i.e., contain multiple time-varying dimensions instead of a single scalar value. Many models can consume and produce multivariate series. - Multiple series training: All machine learning based models (incl. all neural networks) support being trained on multiple (potentially multivariate) series. This can scale to large datasets.
- Probabilistic Support:
TimeSeries
objects can (optionally) represent stochastic time series; this can for instance be used to get confidence intervals, and many models support different flavours of probabilistic forecasting (such as estimating parametric distributions or quantiles). - Past and Future Covariates support: Many models in Darts support past-observed and/or future-known covariate (external data) time series as inputs for producing forecasts.
- Static Covariates support: In addition to time-dependent data,
TimeSeries
can also contain static data for each dimension, which can be exploited by some models. - Hierarchical Reconciliation: Darts offers transformers to perform reconciliation. These can make the forecasts add up in a way that respects the underlying hierarchy.
- Regression Models: It is possible to plug-in any scikit-learn compatible model to obtain forecasts as functions of lagged values of the target series and covariates.
- Data processing: Tools to easily apply (and revert) common transformations on time series data (scaling, filling missing values, boxcox, ...)
- Metrics: A variety of metrics for evaluating time series' goodness of fit; from R2-scores to Mean Absolute Scaled Error.
- Backtesting: Utilities for simulating historical forecasts, using moving time windows.
- PyTorch Lightning Support: All deep learning models are implemented using PyTorch Lightning, supporting among other things custom callbacks, GPUs/TPUs training and custom trainers.
- Filtering Models: Darts offers three filtering models:
KalmanFilter
,GaussianProcessFilter
, andMovingAverage
, which allow to filter time series, and in some cases obtain probabilistic inferences of the underlying states/values. - Datasets The
darts.datasets
submodule contains some popular time series datasets for rapid experimentation.
Forecasting Models
Here's a breakdown of the forecasting models currently implemented in Darts. We are constantly working on bringing more models and features.
Model | Univariate | Multivariate | Probabilistic | Multiple-series training | Past-observed covariates support | Future-known covariates | Static covariates support | Reference |
---|---|---|---|---|---|---|---|---|
ARIMA |
✅ | ✅ | ✅ | |||||
VARIMA |
✅ | ✅ | ✅ | |||||
AutoARIMA |
✅ | ✅ | ||||||
StatsForecastAutoARIMA (faster AutoARIMA) |
✅ | ✅ | ✅ | statsforecast | ||||
ExponentialSmoothing |
✅ | ✅ | ||||||
BATS and TBATS |
✅ | ✅ | TBATS paper | |||||
Theta and FourTheta |
✅ | Theta & 4 Theta | ||||||
Prophet (see install notes) |
✅ | ✅ | ✅ | Prophet repo | ||||
FFT (Fast Fourier Transform) |
✅ | |||||||
KalmanForecaster using the Kalman filter and N4SID for system identification |
✅ | ✅ | ✅ | ✅ | N4SID paper | |||
Croston method |
✅ | |||||||
RegressionModel ; generic wrapper around any sklearn regression model |
✅ | ✅ | ✅ | ✅ | ✅ | |||
RandomForest |
✅ | ✅ | ✅ | ✅ | ✅ | |||
LinearRegressionModel |
✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ||
LightGBMModel |
✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ||
CatBoostModel |
✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ||
RNNModel (incl. LSTM and GRU); equivalent to DeepAR in its probabilistic version |
✅ | ✅ | ✅ | ✅ | ✅ | DeepAR paper | ||
BlockRNNModel (incl. LSTM and GRU) |
✅ | ✅ | ✅ | ✅ | ✅ | |||
NBEATSModel |
✅ | ✅ | ✅ | ✅ | ✅ | N-BEATS paper | ||
NHiTSModel |
✅ | ✅ | ✅ | ✅ | ✅ | N-HiTS paper | ||
TCNModel |
✅ | ✅ | ✅ | ✅ | ✅ | TCN paper, DeepTCN paper, blog post | ||
TransformerModel |
✅ | ✅ | ✅ | ✅ | ✅ | |||
TFTModel (Temporal Fusion Transformer) |
✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | TFT paper, PyTorch Forecasting |
Naive Baselines | ✅ |
Community & Contact
Anyone is welcome to join our Discord server
Gitter room to
ask questions, make proposals, discuss use-cases, and more. If you spot a bug or
or have suggestions, GitHub issues are also welcome.
If what you want to tell us is not suitable for Discord or Github, feel free to send us an email at darts@unit8.co for darts related matters or info@unit8.co for any other inquiries.
Contribute
The development is ongoing, and we welcome suggestions, pull requests and issues on GitHub. All contributors will be acknowledged on the change log page.
Before working on a contribution (a new feature or a fix), check our contribution guidelines.
Citation
If you are using Darts in your scientific work, we would appreciate citations to the following JMLR paper.
Darts: User-Friendly Modern Machine Learning for Time Series
Bibtex entry:
@article{JMLR:v23:21-1177,
author = {Julien Herzen and Francesco Lässig and Samuele Giuliano Piazzetta and Thomas Neuer and Léo Tafti and Guillaume Raille and Tomas Van Pottelbergh and Marek Pasieka and Andrzej Skrodzki and Nicolas Huguenin and Maxime Dumonal and Jan Kościsz and Dennis Bader and Frédérick Gusset and Mounir Benheddi and Camila Williamson and Michal Kosinski and Matej Petrik and Gaël Grosch},
title = {Darts: User-Friendly Modern Machine Learning for Time Series},
journal = {Journal of Machine Learning Research},
year = {2022},
volume = {23},
number = {124},
pages = {1-6},
url = {http://jmlr.org/papers/v23/21-1177.html}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file u8darts-0.21.0.tar.gz
.
File metadata
- Download URL: u8darts-0.21.0.tar.gz
- Upload date:
- Size: 357.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.28.1 setuptools/61.2.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9da9045cac29e071c3d80c2b671dc4641a2b09ed5fc7565ac87037e6e9cfea81 |
|
MD5 | 32236f0384bce85f03c0085c8230f9c9 |
|
BLAKE2b-256 | d95cb811dbe7c6bc1778592304d54eac1ff22dd4552724dd15cd45c5395984d6 |
File details
Details for the file u8darts-0.21.0-py3-none-any.whl
.
File metadata
- Download URL: u8darts-0.21.0-py3-none-any.whl
- Upload date:
- Size: 424.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.28.1 setuptools/61.2.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1835362a55ee314b58117dfe8bb7bcfb6cad922f900455952cf81444d37494e3 |
|
MD5 | 359d9eabf11eec27ad460a1d00374385 |
|
BLAKE2b-256 | 2b88200df4b54a950d56d5f34337d4b2603c58b672237261cc4cb188c109b7c7 |