Implementation
This example illustrates the implementation of the dynamic time warping algorithm when the two sequences s and t are strings of discrete symbols. For two symbols x and y,d(x, y)
is a distance between the symbols, e.g. d(x, y)
= .
int DTWDistance(s: array ..n t: array ..m
where DTW, j
The comma is a punctuation mark that appears in several variants in different languages. Some typefaces render it as a small line, slightly curved or straight, but inclined from the vertical; others give it the appearance of a miniature fille ...
/code> is the distance between s :i/code> and t :j/code> with the best alignment.
We sometimes want to add a locality constraint. That is, we require that if s /code> is matched with t /code>, then is no larger than w, a window parameter.
We can easily modify the above algorithm to add a locality constraint (differences marked).
However, the above given modification works only if is no larger than w, i.e. the end point is within the window length from diagonal. In order to make the algorithm work, the window parameter w must be adapted so that (see the line marked with (*) in the code).
int DTWDistance(s: array ..n t: array ..mmark>, w: int)
Warping properties
The DTW algorithm produces a discrete matching between existing elements of one series to another. In other words, it does not allow time-scaling of segments within the sequence. Other methods allow continuous warping. For example, Correlation Optimized Warping (COW) divides the sequence into uniform segments that are scaled in time using linear interpolation, to produce the best matching warping. The segment scaling causes potential creation of new elements, by time-scaling segments either down or up, and thus produces a more sensitive warping than DTW's discrete matching of raw elements.
Complexity
The time complexity of the DTW algorithm is , where and are the lengths of the two input sequences. The 50 years old quadratic time bound was broken in 2016: an algorithm due to Gold and Sharir enables computing DTW in time and space for two input sequences of length .
This algorithm can also be adapted to sequences of different lengths. Despite this improvement, it was shown that a strongly subquadratic running time of the form for some cannot exist unless the Strong exponential time hypothesis
In computational complexity theory, the exponential time hypothesis is an unproven computational hardness assumption that was formulated by . It states that satisfiability of 3-CNF Boolean formulas cannot be solved in subexponential time, 2^. Mor ...
fails.
While the dynamic programming algorithm for DTW requires space in a naive implementation, the space consumption can be reduced to using Hirschberg's algorithm
In computer science, Hirschberg's algorithm, named after its inventor, Dan Hirschberg, is a dynamic programming algorithm that finds the optimal sequence alignment between two strings. Optimality is measured with the Levenshtein distance, define ...
.
Fast computation
Fast techniques for computing DTW include PrunedDTW, SparseDTW, FastDTW, and the MultiscaleDTW.
A common task, retrieval of similar time series, can be accelerated by using lower bounds such as LB_Keogh, LB_Improved, or LB_Petitjean. However, the Early Abandon and Pruned DTW algorithm reduces the degree of acceleration that lower bounding provides and sometimes renders it ineffective.
In a survey, Wang et al. reported slightly better results with the LB_Improved lower bound than the LB_Keogh bound, and found that other techniques were inefficient. Subsequent to this survey, the LB_Enhanced bound was developed that is always tighter than LB_Keogh while also being more efficient to compute. LB_Petitjean is the tightest known lower bound that can be computed in linear time.
Average sequence
Averaging for dynamic time warping is the problem of finding an average sequence for a set of sequences.
NLAAF is an exact method to average two sequences using DTW.
For more than two sequences, the problem is related to that of multiple alignment and requires heuristics.
DBA is currently a reference method to average a set of sequences consistently with DTW.
COMASA efficiently randomizes the search for the average sequence, using DBA as a local optimization process.
Supervised learning
A nearest-neighbour classifier can achieve state-of-the-art performance when using dynamic time warping as a distance measure.
Amerced Dynamic Time Warping
Amerced Dynamic Time Warping (ADTW) is a variant of DTW designed to better control DTW's permissiveness in the alignments that it allows. The windows that classical DTW uses to constrain alignments introduce a step function. Any warping of the path is allowed within the window and none beyond it. In contrast, ADTW employs an additive penalty that is incurred each time that the path is warped. Any amount of warping is allowed, but each warping action incurs a direct penalty. ADTW significantly outperforms DTW with windowing when applied as a nearest neighbor classifier on a set of benchmark time series classification tasks.
Alternative approaches
In functional data analysis, time series are regarded as discretizations of smooth (differentiable) functions of time. By viewing the observed samples at smooth functions, one can utilize continuous mathematics for analyzing data. Smoothness and monotonicity of time warp functions may be obtained for instance by integrating a time-varying radial basis function
In mathematics a radial basis function (RBF) is a real-valued function \varphi whose value depends only on the distance between the input and some fixed point, either the origin, so that \varphi(\mathbf) = \hat\varphi(\left\, \mathbf\right\, ), o ...
, thus being a one-dimensional diffeomorphism
In mathematics, a diffeomorphism is an isomorphism of differentiable manifolds. It is an invertible function that maps one differentiable manifold to another such that both the function and its inverse are continuously differentiable.
Definit ...
. Optimal nonlinear time warping functions are computed by minimizing a measure of distance of the set of functions to their warped average. Roughness penalty terms for the warping functions may be added, e.g., by constraining the size of their curvature. The resultant warping functions are smooth, which facilitates further processing. This approach has been successfully applied to analyze patterns and variability of speech movements.
Another related approach are hidden Markov model
A hidden Markov model (HMM) is a Markov model in which the observations are dependent on a latent (or ''hidden'') Markov process (referred to as X). An HMM requires that there be an observable process Y whose outcomes depend on the outcomes of X ...
s (HMM) and it has been shown that the Viterbi algorithm
The Viterbi algorithm is a dynamic programming algorithm for obtaining the maximum a posteriori probability estimate of the most likely sequence of hidden states—called the Viterbi path—that results in a sequence of observed events. This i ...
used to search for the most likely path through the HMM is equivalent to stochastic DTW.
DTW and related warping methods are typically used as pre- or post-processing steps in data analyses. If the observed sequences contain both random variation in both their values, shape of observed sequences and random temporal misalignment, the warping may overfit to noise leading to biased results. A simultaneous model formulation with random variation in both values (vertical) and time-parametrization (horizontal) is an example of a nonlinear mixed-effects model. In human movement analysis, simultaneous nonlinear mixed-effects modeling has been shown to produce superior results compared to DTW.
Open-source software
* Th
tempo
C++ library with Python bindings implements Early Abandoned and Pruned DTW as well as Early Abandoned and Pruned ADTW and DTW lower bounds LB_Keogh, LB_Enhanced and LB_Webb.
* Th
UltraFastMPSearch
Java library implements the UltraFastWWSearch algorithm for fast warping window tuning.
* Th
lbimproved
C++ library implements Fast Nearest-Neighbor Retrieval algorithms under the GNU General Public License (GPL). It also provides a C++ implementation of dynamic time warping, as well as various lower bounds.
* Th
FastDTW
library is a Java implementation of DTW and a FastDTW implementation that provides optimal or near-optimal alignments with an ''O''(''N'') time and memory complexity, in contrast to the ''O''(''N''2) requirement for the standard DTW algorithm. FastDTW uses a multilevel approach that recursively projects a solution from a coarser resolution and refines the projected solution.
FastDTW fork
(Java) published to Maven Central.
time-series-classification
(Java) a package for time series classification using DTW in Weka.
* Th
DTW suite
provides Python
dtw-python
and R packages
dtw
with a comprehensive coverage of the DTW algorithm family members, including a variety of recursion rules (also called step patterns), constraints, and substring matching.
* The mlpy Python library implements DTW.
* Th
pydtw
Python library implements the Manhattan and Euclidean flavoured DTW measures including the LB_Keogh lower bounds.
* Th
cudadtw
C++/CUDA library implements subsequence alignment of Euclidean-flavoured DTW and ''z''-normalized Euclidean distance similar to the popular UCR-Suite on CUDA-enabled accelerators.
* Th
JavaML
machine learning library implement
DTW
* Th
ndtw
C# library implements DTW with various options.
Sketch-a-Char
uses Greedy DTW (implemented in JavaScript) as part of LaTeX symbol classifier program.
* Th
MatchBox
implements DTW to match mel-frequency cepstral coefficients of audio signals.
Sequence averaging
a GPL Java implementation of DBA.
* Th
Gesture Recognition Toolkit, GRT
C++ real-time gesture-recognition toolkit implements DTW.
* Th
PyHubs
software package implements DTW and nearest-neighbour classifiers, as well as their extensions (hubness-aware classifiers).
* Th
simpledtw
Python library implements the classic ''O''(''NM'') Dynamic Programming algorithm and bases on Numpy. It supports values of any dimension, as well as using custom norm functions for the distances. It is licensed under the MIT license.
* Th
tslearn
Python library implements DTW in the time-series context.
*Th
cuTWED
CUDA Python library implements a state of the art improved Time Warp Edit Distance using only linear memory with phenomenal speedups.
DynamicAxisWarping.jl
Is a Julia implementation of DTW and related algorithms such as FastDTW, SoftDTW, GeneralDTW and DTW barycenters.
* Th
Multi_DTW
implements DTW to match two 1-D arrays or 2-D speech files (2-D array).
* Th
dtwParallel
(Python) package incorporates the main functionalities available in current DTW libraries and novel functionalities such as parallelization, computation of similarity (kernel-based) values, and consideration of data with different types of features (categorical, real-valued, etc.).
Applications
Spoken-word recognition
Due to different speaking rates, a non-linear fluctuation occurs in speech pattern versus time axis, which needs to be eliminated. DP matching is a pattern-matching algorithm based on dynamic programming (DP), which uses a time-normalization effect, where the fluctuations in the time axis are modeled using a non-linear time-warping function. Considering any two speech patterns, we can get rid of their timing differences by warping the time axis of one so that the maximal coincidence is attained with the other. Moreover, if the warping function is allowed to take any possible value, distinction can be made between words belonging to different categories. So, to enhance the distinction between words belonging to different categories, restrictions were imposed on the warping function slope.
Correlation power analysis
Unstable clocks are used to defeat naive power analysis. Several techniques are used to counter this defense, one of which is dynamic time warping.
Finance and econometrics
Dynamic time warping is used in finance and econometrics to assess the quality of the prediction versus real-world data.
See also
* Levenshtein distance
* Elastic matching
* Sequence alignment
In bioinformatics, a sequence alignment is a way of arranging the sequences of DNA, RNA, or protein to identify regions of similarity that may be a consequence of functional, structural biology, structural, or evolutionary relationships between ...
* Multiple sequence alignment
Multiple sequence alignment (MSA) is the process or the result of sequence alignment of three or more biological sequences, generally protein, DNA, or RNA. These alignments are used to infer evolutionary relationships via phylogenetic analysis an ...
* Wagner–Fischer algorithm
In computer science, the Wagner–Fischer algorithm is a dynamic programming algorithm that computes the edit distance between two strings of characters.
History
The Wagner–Fischer algorithm has a history of multiple invention. Navarro lists t ...
* Needleman–Wunsch algorithm
* Fréchet distance
* Nonlinear mixed-effects model
References
Further reading
* Pavel Senin
Dynamic Time Warping Algorithm Review
*
*
*
*
*
* {{cite journal , title=Addressing Big Data Time Series: Mining Trillions of Time Series Subsequences Under Dynamic Time Warping , author=Rakthanmanon, Thanawin , journal=ACM Transactions on Knowledge Discovery from Data , date=September 2013 , volume=7 , issue=3 , pages=10:1–10:31 , doi=10.1145/2513092.2500489, pmid=31607834 , pmc=6790126
Dynamic programming
Articles with example pseudocode
Machine learning algorithms
Multivariate time series