Welcome to PaddleTS

PaddleTS is an easy to use Python library for deep time series modeling, focusing on the state-of-the-art deep neural network models based on PaddlePaddle deep learning framework. It aims to provide great flexibility and excellent user experiences for practitioners and professionals. It’s featured with:

  • A unified data structure named TSDataset for representing time series data with one or multiple target variables and optional different kinds of covariates (e.g. known covariates, observed covariates, and static covariates, etc.);

  • A base model class named PaddleBaseModelImpl , which inherits from the PaddleBaseModel and further encapsulates some routine procedures (e.g. data loading, callbacks setup, loss computation, training loop control, etc.) and allows developers to focus on the implementation of network architectures when developing new models;

  • A set of state-of-the-art deep learning models (e.g. NBEATS, NHiTS, LSTNet, TCN, Transformer, etc);

  • A set of transformation operators for data preprocessing (e.g. missing values/outliers handling, one-hot encoding, normalization, and automatic date/time-related covariate generation, etc.);

  • A set of analysis operators for quick data exploration (e.g. basic statistics and summary).

In future, more advanced features will be coming, including:

  • Automatic hyper-parameter tuning;

  • Time series representation learning models;

  • Add support for probabilistic forecasting;

  • Scenario-specific pipelines which aim to provide an end-to-end solution for solving real-world business problems;

  • And more.

Project GitHub: https://github.com/PaddlePaddle/PaddleTS

Get Started

Installation

Dataset

Transform

Models

Metrics

Pipeline

Analysis

Backtest