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.3.4.tar.gz
(133.4 kB
view hashes)
Built Distribution
Close
Hashes for fastdtw-0.3.4-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 28918c163dce9e736e09252a02073fce712bc4c7aa18f2a45d882cca84da2dbb |
|
MD5 | ac819976d43d285e8381a969f2ee4d3b |
|
BLAKE2b-256 | 99e58425c47c3919e3fe3f771ee41c4f97c3a66104d33e07127dea81e32b7987 |