Skip to main content

TimeDiffusion - Unified Framework for Multiple Time Series Tasks

Project description

TimeDiffusion - Unified Framework for Multiple Time Series Tasks

Supports 2D (image) and 3D (video) data as input for research purposes.

Contents

Install

pip install timediffusion

Quick Start

Forecasting time series

# train sequence in shape [channels, sequence_length]
model = TD(input_dims=train.shape).to(device=device)
training_losses = model.fit(train)
# horizon : int - how many future values to forecast
predictions = model.forecast(horizon)

Creating synthetic time series

# sequence in shape [channels, sequence_length]
model = TD(input_dims=seq.shape).to(device=device)
training_losses = model.fit(seq)
# proximity - how close to original, samples - total synthetic time series
synthetic_data = model.synth(proximity=0.9, samples=3, batch_size=2, step_granulation=10)

Time series Imputation

# sequence in shape [channels, sequence_length]
model = TD(input_dims=seq.shape).to(device=device)
# mask - binary array of same shape, as sequence, with 1 in positions, that are unknown
training_losses = model.fit(seq, mask=mask)
restored_seq = model.restore(example=seq, mask=mask)

Examples

Time series: multiple tasks example

Forecasting bitcoin price example

Philosophy

Main synopsis behind TimeDiffusion model is that in reality, when working with time series we don’t have many samples, as it could be in other machine learning fields (e.g. cv, nlp). Thus, classical autoregressive approaches like ARIMA has the most suitable approach of fitting / training only on original sequence (maybe with some exogenous data).

TimeDiffusion takes inspiration from these established methods and only trains on the input sample. Model incorporates most powerful modern deep learning techniques such as diffusion process, exponential dilated convolutions, residual connections and attention mechanism (in one of the versions)

Base Models

  • TimeDiffusionProjector - exponential dilated convolutions + residual connections.

Currently main model in use

  • TimeDiffusionAttention - attention mechanism on top of TimeDiffusionProjector (q, k, v) projectors.

Currently not viable

  • TimeDiffusionLiquid - exponential dilated convolutions with shared middle convolutional layer weight.

Lightweight, fast, but less accurate than the main model.

Model architecture

Presented below are diagrams depicting model components, each new scheme representing a higher level of abstraction.

  • Temporal Block

Temporal Block Architecture image

  • TimeDiffusionProjector

TimeDiffusionProjector Architecture image

  • TimeDiffusionAttention

TimeDiffusion Architecture image

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

timediffusion-0.4.1.tar.gz (13.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

timediffusion-0.4.1-py3-none-any.whl (12.8 kB view details)

Uploaded Python 3

File details

Details for the file timediffusion-0.4.1.tar.gz.

File metadata

  • Download URL: timediffusion-0.4.1.tar.gz
  • Upload date:
  • Size: 13.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for timediffusion-0.4.1.tar.gz
Algorithm Hash digest
SHA256 fe437f4029c428d6acb77426f651437332aa2d674f07ca4be45c42858bdd2f9d
MD5 b64fa1bdffe79589f2e035cdbb8dddf7
BLAKE2b-256 2ba98dc79ab2b46d88c3254e2c8bb699ead0a7196252bf8534903c685dadbc27

See more details on using hashes here.

File details

Details for the file timediffusion-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: timediffusion-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 12.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for timediffusion-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 bc27aa1855f852025f29d1ebda0ec3c82f1443898ea268d0210286d62d4f35b0
MD5 2fde21eaf911fba30fba65be8d8a9157
BLAKE2b-256 44f091709cda29f8c6231de5d37fa0f08df01e814430ea191a74c126a63ef61d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page