Skip to main content

Visualization of Elastic Warping of Time Series Data

Project description

Elastic Warping Visualization For Time Series

Author

This repository contains a project for visualizing warping distortions such as the ones produced by Dynamic Time Warping (DTW) between two time series. The project includes functions to generate plots and animated MP4s showcasing the alignment between the series. The repository is configured using Hydra for flexible and organized parameter management, and aeon-toolkit for all time series processing and similarity measure calculation.

Contents

  • main.py: The main script to run the DTW visualization.
  • draw_functions.py: Contains the functions for generating plots and MP4s.
  • utils.py: Utility functions used in the project.
  • config/config_hydra.yaml: Configuration file for Hydra.

Usage

PyPi Package

Simply install the package as such pip install elastic_warping_vis, latest version being 0.2.0 and then use it as follows:

from elastic_warping_vis.utils import load_data
from elastic_warping_vis.draw_functions import draw_elastic_gif, draw_elastic

# ignore third output, used for dev version
X, y, _ = load_data(dataset_name="ECG200", split="train", znormalize=True)

ts1 = X[y == 0][0]
ts2 = X[y == 1][0]
draw_elastic(ts1, ts2, metric="dtw")
draw_elastic_gif(ts1, ts2, metric="dtw")

Prerequisites

  • Python >= 3.10
  • Required Python libraries:
    • numpy==1.26.4
    • matplotlib==3.9.0
    • hydra-core==1.3.2
    • aeon==0.10.0
  • Required on the system:
    • ffmpeg version 4.4.2

Running the Code

  1. Configure the parameters in config/config_hydra.yaml as needed.
  2. Run the main script:
    python3 main.py
    

Configuration Parameters

The following parameters can be configured in the config/config_hydra.yaml file:

  • Hydra Configuration:

    • hydra.job.name: Name of the job (default: dtw-vis).
    • hydra.run.dir: Directory to save experiment results (default: exps/${hydra.job.name}).
  • General Parameters:

    • output_dir: Directory where output plots and MP4s will be saved (default: ./).
    • dataset: Name of the dataset to use (default: ItalyPowerDemand) loaded from aeon-toolkit, see the classification dataset list and the regression datasets list, works with both univariate and multivariate time series datasets.
    • split: Dataset split (default: None).
    • znormalize: Whether to Z-normalize the time series (default: True).
    • class_x: Class label for the first time series (default: 0).
    • class_y: Class label for the second time series (default: 1).
    • show_warping: Whether to show warping connections in the plot (default: False).
    • figsize: Figure size for the plots (default: [12, 10]).
  • Metric Parameters:

    • metric: Metric used for elastic warping calculation (default: dtw), see aeon's list of elastic measures.
    • metric_params: Additional parameters for the DTW metric, including:
      • window: Window size for the Sakoe-Chiba band (default: None).
      • p: Parameter for p-norm (default: 2.0).
      • w: Window size (default: None).
      • itakura_max_slope: Maximum slope for Itakura parallelogram (default: None).
      • descriptor: Descriptor function (default: identity).
      • reach: Reach parameter (default: 5).
      • g: Parameter for derivative DTW (default: 0.05).
      • epsilon: Epsilon parameter for soft-DTW (default: 1.0).
      • g_arr: G array for derivative DTW (default: None).
      • nu: Regularization parameter for shape-based DTW (default: 0.001).
      • lmbda: Regularization parameter for penalized DTW (default: 1.0).
      • independent: Whether to use independent feature DTW (default: True).
      • c: Regularization parameter for elastic shape DTW (default: 1.0).
      • warp_penalty: Penalty for warping path length (default: 1.0).
      • standardize: Whether to standardize the time series before DTW (default: True).

Citation

If you use this code in your research, please cite this repository:

@misc{ismail-fawaz2024elastic-vis,
  author       = {Ismail-Fawaz, Ali and Devanne, Maxime and Berretti, Stefano and Weber, Jonathan and Forestier, Germain},
  title        = {Elastic Warping Visualization For Time Series},
  year         = {2024},
  publisher    = {Github},
  journal      = {GitHub repository},
  howpublished = {\url{https://github.com/yourusername/dtw-visualization}}
}

Acknowledgments

We would like to thank the authors of the UCR, UEA and Monash archives for making the Time Series Classification/Regression datasets publicly available. We would also like to thank the Aeon time series machine learning python toolkit for their fast implementation of elastic similarity measures.

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

elastic_warping_vis-0.2.1.tar.gz (2.0 MB view hashes)

Uploaded Source

Built Distribution

elastic_warping_vis-0.2.1-py3-none-any.whl (20.1 kB view hashes)

Uploaded Python 3

Supported by

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