Dynamic Time Warping (DTW) algorithm with an O(N) time and memory complexity.
Project description
fastdtw
Python implementation of FastDTW [1], which is an approximate Dynamic Time Warping (DTW) algorithm that provides optimal or near-optimal alignments with an O(N) time and memory complexity.
Install
pip install fastdtw
Example
import numpy as np from scipy.spatial.distance import euclidean from fastdtw import fastdtw x = np.array([[1,1], [2,2], [3,3], [4,4], [5,5]]) y = np.array([[2,2], [3,3], [4,4]]) distance, path = fastdtw(x, y, dist=euclidean) print(distance)
References
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
fastdtw-0.2.1.tar.gz
(2.3 kB
view details)
File details
Details for the file fastdtw-0.2.1.tar.gz.
File metadata
- Download URL: fastdtw-0.2.1.tar.gz
- Upload date:
- Size: 2.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7aaf0e0d0f89ffff271f5c7e65439727313622cbab78b932756fef1a2004d16
|
|
| MD5 |
7af257debda75b8424c74181ce097d33
|
|
| BLAKE2b-256 |
27cbc65ebd528868ec39c47699d7fd65a0409a396085872af63468df45e972e8
|