百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
D

darts

> DevOps
开源

Python 库,用于对时间序列进行用户友好型预测和异常检测。

9.5K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

Python 库,用于对时间序列进行用户友好型预测和异常检测。

Time Series Made Easy in Python


Darts is a Python library for user-friendly forecasting and anomaly detection on time series. It contains a variety of models, from classics such as ARIMA to deep neural networks. The forecasting 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.

Darts also offers extensive anomaly detection capabilities. For instance, it is trivial to apply PyOD models on time series to obtain anomaly scores, or to wrap any of Darts forecasting or filtering models to obtain fully fledged anomaly detection models.

Documentation

  • Quickstart
  • User Guide
  • API Reference
  • Examples

High Level Introductions

  • Introductory Blog Post
  • Introduction video (25 minutes)

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
  • Hierarchical Forecast Reconciliation

Quick Install

We recommend to first setup a clean Python environment for your project with Python 3.11+ using your favorite tool (conda, venv, virtualenv with or without virtualenvwrapper).

Once your environment is set up you can install darts using pip:

bash
pip install darts

For more details you can refer to our installation instructions.

Example Usage

Forecasting

Create a TimeSeries object from a Pandas DataFrame, and split it in train/validation series:

python
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:

python
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:

python
import matplotlib.pyplot as plt

series.plot()
prediction.plot(label="forecast", low_quantile=0.05, high_quantile=0.95)
plt.legend()

Anomaly Detection

Load a multivariate series, trim it, keep 2 components, split train and validation sets:

python
from darts.datasets import ETTh2Dataset

series = ETTh2Dataset().load()[:10000][["MUFL", "LULL"]]
train, val = series.split_before(0.6)

Build a k-means anomaly scorer, train it on the train set and use it on the validation set to get anomaly scores:

python
from darts.ad import KMeansScorer

scorer = KMeansScorer(k=2, window=5)
scorer.fit(train)
anom_score = scorer.score(val)

Build a binary anomaly detector and train it over train scores, then use it over validation scores to get binary anomaly classification:

python
from darts.ad import QuantileDetector

detector = QuantileDetector(high_quantile=0.99)
detector.fit(scorer.score(train))
binary_anom = detector.detect(anom_score)

Plot (shifting and scaling some of the series to make everything appear on the same figure):

python
import matplotlib.pyplot as plt

series.plot()
(anom_score / 2. - 100).plot(label="computed anomaly score", c="orangered", lw=3)
(binary_anom * 45 - 150).plot(label="detected binary anomaly", lw=4)

Features

  • Forecasting Models: A large collection of forecasting models for regression as well as classification tasks; from statistical models (such as ARIMA) to deep learning models (such as N-BEATS). See the forecasting models below.

  • Anomaly Detection The darts.ad module contains a collection of anomaly scorers, detectors and aggregators, which can all be combined to detect anomalies in time series. It is easy to wrap any of Darts forecasting or filtering models to build a fully fledged anomaly detection model that compares predictions with actuals. The PyODScorer makes it trivial to use PyOD detectors on time series.

  • Multivariate Support: TimeSeries can be multivariate - i.e., contain multiple time-varying dimensions/columns instead of a single scalar value. Many models can consume and produce multivariate series.

  • Multiple Series Training (Global Models): All machine learning based models (incl. all neural networks) support being trained on multiple (potentially multivariate) series. This can scale to large datasets too.

  • 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). Some anomaly detection scorers are also able to exploit these predictive distributions.

  • Conformal Prediction Support: Our conformal prediction models allow to generate probabilistic forecasts with calibrated quantile intervals for any pre-trained global forecasting model.

  • 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.

  • Training with Sample Weights: All global models support being trained with sample weights. They can be applied to each observation, forecasted time step and target column.

  • Forecast Start Shifting: All global models support training and prediction on a shifted output window. This is useful for example for Day-Ahead Market forecasts, or when the covariates (or target series) are reported with a delay.

  • Explainability: Darts has the ability to explain some forecasting models using SHAP values.

  • Data Processing: Tools to easily apply (and revert) common transformations on time series data (scaling, filling missing values, differencing, 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.

  • MLflow Integration: Integration with MLflow for automated tracking, comparing, and persisting of Darts forecasting model experiments. See the MLflow quickstart notebook for examples.

  • Filtering Models: Darts offers three filtering models: KalmanFilter, GaussianProcessFilter, and MovingAverageFilter, 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 and reproducible experimentation.

  • Compatibility with Multiple Backends: TimeSeries objects can be created from and exported to various backends such as pandas, polars, numpy, pyarrow, xarray, and more, facilitating seamless integration with different data processing libraries.

Forecasting Models

Here's a breakdown of the forecasting models currently implemented in Darts. Our suite includes both regression and classification models, each tailored for specific forecasting tasks. We are committed to expanding our offerings with new models and features to enhance your forecasting capabilities.

Regression Models: Our regression models are designed to predict continuous numerical values, making them ideal for forecasting future trends and patterns in time series data. Utilize these models to gain insights into potential future outcomes based on historical data.

Model Sources Target Series Support:

Univariate/
Multivariate
Covariates Support:

Past-observed/
Future-known/
Static
Probabilistic Forecasting:

Sampled/
Distribution Parameters
Training & Forecasting on Multiple Series
Baseline Models
([LocalForecastingModel](https://uni

Issues· 219 开放

查看全部 Issues在 GitHub 打开
  • #2968

    如果 multi_models = True 且 output_chunk_length > 1,则将未来的因素相对于预测步骤进行索引

    feature requestcore improvement更新于 2026年9月18日
  • #3200

    [新模型] TiRex-2 零样本多变量预测

    new model更新于 2026年9月18日
  • #3179

    支持对没有目标历史记录的 Torch 模型进行冷启动预测

    更新于 2026年8月19日
  • #3177

    默认安全的模型加载

    core improvement更新于 2026年8月19日
  • #3128

    [问题] 您是否考虑了更先进的异常值检测和值补全?

    feature requestcore improvement更新于 2026年8月17日
  • #2842

    将 One-Hot 编码器添加到时间轴编码器中

    feature requestpr_welcome更新于 2026年8月14日
  • #3171

    允许 TFTExplainer 解释比模型批量大小更多的系列

    更新于 2026年8月7日
  • #2685

    增加对 TFT 功能重要性随时间变化的支持

    feature requestpr_welcome更新于 2026年8月1日
  • #2489

    TFTExplainer: 在多个时间序列上进行训练时获取解释

    buggood first issue更新于 2026年7月30日
  • #2758

    [FEAT] RIN 用于协变量

    feature requestpr_welcome更新于 2026年7月29日

> 标签

Pythonanomaly-detectiondata-sciencedeep-learningforecasting

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月19日
分类DevOps
定价开源

> 相关工具

D
Docker
容器化平台,标准化应用交付
G
GitHub Actions
GitHub 原生 CI/CD 工作流
N
Nginx
高性能 Web 服务器与反向代理