forked from stumpy-dev/stumpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstump.py
More file actions
401 lines (310 loc) · 12.9 KB
/
stump.py
File metadata and controls
401 lines (310 loc) · 12.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
# STUMPY
# Copyright 2019 TD Ameritrade. Released under the terms of the 3-Clause BSD license.
# STUMPY is a trademark of TD Ameritrade IP Company, Inc. All rights reserved.
import numpy as np
from . import core, stamp
from numba import njit, prange
import logging
logger = logging.getLogger(__name__)
def _get_first_stump_profile(start, T_A, T_B, m, excl_zone, M_T, Σ_T,
ignore_trivial):
"""
Compute the matrix profile, matrix profile index, left matrix profile
index, and right matrix profile index for given window within the times
series or sequence that is denote by the `start` index. Essentially, this
is a convenience wrapper around `stamp.mass`
Parameters
----------
start : int
The window index to calculate the first matrix profile, matrix profile
index, left matrix profile index, and right matrix profile index for.
T_A : ndarray
The time series or sequence for which the matrix profile index will
be returned
T_B : ndarray
The time series or sequence that contain your query subsequences
m : int
Window size
excl_zone : int
The half width for the exclusion zone relative to the `start`.
M_T : ndarray
Sliding mean for `T_A`
Σ_T : ndarray
Sliding standard deviation for `T_A`
ignore_trivial : bool
`True` if this is a self join and `False` otherwise (i.e., AB-join).
Returns
-------
P : float64
Matrix profile for the window with index equal to `start`
I : int64
Matrix profile index for the window with index equal to `start`
"""
# Handle first subsequence, add exclusionary zone
if ignore_trivial:
P, I = stamp.mass(T_B[start:start+m], T_A, M_T, Σ_T,
start, excl_zone)
PL, IL = stamp.mass(T_B[start:start+m], T_A, M_T, Σ_T,
start, excl_zone, left=True)
PR, IR = stamp.mass(T_B[start:start+m], T_A, M_T, Σ_T,
start, excl_zone, right=True)
else:
P, I = stamp.mass(T_B[start:start+m], T_A, M_T, Σ_T)
# No left and right matrix profile available
IL = -1
IR = -1
return P, (I, IL, IR)
def _get_QT(start, T_A, T_B, m):
"""
Compute the sliding dot product between the query, `T_B`, (from
[start:start+m]) and the time series, `T_A`. Additionally, compute
QT for the first window.
Parameters
----------
start : int
The window index for T_B from which to calculate the QT dot product
T_A : ndarray
The time series or sequence for which to compute the dot product
T_B : ndarray
The time series or sequence that contain your query subsequence
of interest
m : int
Window size
Returns
-------
QT : ndarray
Given `start`, return the corresponding QT
QT_first : ndarray
QT for the first window
"""
QT = core.sliding_dot_product(T_B[start:start+m], T_A)
QT_first = core.sliding_dot_product(T_A[:m], T_B)
return QT, QT_first
@njit(parallel=True, fastmath=True)
def _calculate_squared_distance_profile(m, QT, μ_Q, σ_Q, M_T, Σ_T):
"""
A Numba JIT-compiled algorithm for parallel computation of the squared
distance profile according to:
DOI: 10.1109/ICDM.2016.0179
See Equation on Page 4
Parameters
----------
QT : ndarray
Dot product between the query sequence,`Q`, and time series, `T`
μ_Q : ndarray
Mean of the query sequence, `Q`
σ_Q : ndarray
Standard deviation of the query sequence, `Q`
M_T : ndarray
Sliding mean of time series, `T`
Σ_T : ndarray
Sliding standard deviation of time series, `T`
Returns
-------
D_squared : ndarray
Squared z-normalized Eucldiean distances. The normal distances can
be obtained by calculating taking the square root.
"""
denom = (m*σ_Q*Σ_T)
denom[denom == 0] = 1E-10 # Avoid divide by zero
D_squared = np.abs(2*m*(1.0-(QT-m*μ_Q*M_T)/denom))
return D_squared
@njit(parallel=True, fastmath=True)
def _stump(T_A, T_B, m, range_stop, excl_zone,
M_T, Σ_T, QT, QT_first, μ_Q, σ_Q, k,
ignore_trivial=True, range_start=1):
"""
A Numba JIT-compiled version of STOMP for parallel computation of the
matrix profile, matrix profile indices, left matrix profile indices,
and right matrix profile indices.
Parameters
----------
T_A : ndarray
The time series or sequence for which to compute the matrix profile
T_B : ndarray
The time series or sequence that contain your query subsequences
of interest
m : int
Window size
range_stop : int
The index value along T_B for which to stop the matrix profile
calculation. This parameter is here for consistency with the
distributed `stumped` algorithm.
excl_zone : int
The half width for the exclusion zone relative to the current
sliding window
M_T : ndarray
Sliding mean of time series, `T`
Σ_T : ndarray
Sliding standard deviation of time series, `T`
QT : ndarray
Dot product between some query sequence,`Q`, and time series, `T`
QT_first : ndarray
QT for the first window relative to the current sliding window
μ_Q : ndarray
Mean of the query sequence, `Q`, relative to the current sliding window
σ_Q : ndarray
Standard deviation of the query sequence, `Q`, relative to the current
sliding window
k : int
The total number of sliding windows to iterate over
ignore_trivial : bool
Set to `True` if this is a self-join. Otherwise, for AB-join, set this to
`False`. Default is `True`.
range_start : int
The starting index value along T_B for which to start the matrix
profile claculation. Default is 1.
Returns
-------
profile : ndarray
Matrix profile
indices : ndarray
The first column consists of the matrix profile indices, the second
column consists of the left matrix profile indices, and the third
column consists of the right matrix profile indices.
Notes
-----
DOI: 10.1109/ICDM.2016.0085
See Table II
Timeseries, T_B, will be annotated with the distance location
(or index) of all its subsequences in another times series, T_A.
Return: For every subsequence, Q, in T_B, you will get a distance
and index for the closest subsequence in T_A. Thus, the array
returned will have length T_B.shape[0]-m+1. Additionally, the
left and right matrix profiles are also returned.
Note: Unlike in the Table II where T_A.shape is expected to be equal
to T_B.shape, this implementation is generalized so that the shapes of
T_A and T_B can be different. In the case where T_A.shape == T_B.shape,
then our algorithm reduces down to the same algorithm found in Table II.
Additionally, unlike STAMP where the exclusion zone is m/2, the default
exclusion zone for STOMP is m/4 (See Definition 3 and Figure 3).
For self-joins, set `ignore_trivial = True` in order to avoid the
trivial match.
Note that left and right matrix profiles are only available for self-joins.
"""
QT_odd = QT.copy()
QT_even = QT.copy()
profile = np.empty((range_stop-range_start,)) # float64
indices = np.empty((range_stop-range_start, 3)) # int64
for i in range(range_start, range_stop):
# Numba's prange requires incrementing a range by 1 so replace
# `for j in range(k-1,0,-1)` with its incrementing compliment
for rev_j in prange(1, k):
j = k - rev_j
# GPU Stomp Parallel Implementation with Numba
# DOI: 10.1109/ICDM.2016.0085
# See Figure 5
if i % 2 == 0:
# Even
QT_even[j] = QT_odd[j-1] - T_B[i-1]*T_A[j-1] + T_B[i+m-1]*T_A[j+m-1]
else:
# Odd
QT_odd[j] = QT_even[j-1] - T_B[i-1]*T_A[j-1] + T_B[i+m-1]*T_A[j+m-1]
if i % 2 == 0:
QT_even[0] = QT_first[i]
D = _calculate_squared_distance_profile(m, QT_even, μ_Q[i], σ_Q[i], M_T, Σ_T)
else:
QT_odd[0] = QT_first[i]
D = _calculate_squared_distance_profile(m, QT_odd, μ_Q[i], σ_Q[i], M_T, Σ_T)
if ignore_trivial:
zone_start = max(0, i-excl_zone)
zone_stop = min(k, i+excl_zone)
D[zone_start:zone_stop] = np.inf
I = np.argmin(D)
P = np.sqrt(D[I])
# Get left and right matrix profiles for self-joins
if ignore_trivial and i > 0:
IL = np.argmin(D[:i])
if zone_start <= IL <= zone_stop:
IL = -1
else:
IL = -1
if ignore_trivial and i+1 < D.shape[0]:
IR = i + 1 + np.argmin(D[i+1:])
if zone_start <= IR <= zone_stop:
IR = -1
else:
IR = -1
# Only a part of the profile/indices array are passed
profile[i-range_start] = P
indices[i-range_start] = I, IL, IR
return profile, indices
def stump(T_A, m, T_B=None, ignore_trivial=True):
"""
This is a convenience wrapper around the Numba JIT-compiled parallelized
`_stump` function which computes the matrix profile according to STOMP.
Parameters
----------
T_A : ndarray
The time series or sequence for which to compute the matrix profile
m : int
Window size
T_B : ndarray
The time series or sequence that contain your query subsequences
of interest. Default is `None` which corresponds to a self-join.
ignore_trivial : bool
Set to `True` if this is a self-join. Otherwise, for AB-join, set this
to `False`. Default is `True`.
Returns
-------
out : ndarray
The first column consists of the matrix profile, the second column
consists of the matrix profile indices, the third column consists of
the left matrix profile indices, and the fourth column consists of
the right matrix profile indices.
Notes
-----
DOI: 10.1109/ICDM.2016.0085
See Table II
Timeseries, T_B, will be annotated with the distance location
(or index) of all its subsequences in another times series, T_A.
Return: For every subsequence, Q, in T_B, you will get a distance
and index for the closest subsequence in T_A. Thus, the array
returned will have length T_B.shape[0]-m+1. Additionally, the
left and right matrix profiles are also returned.
Note: Unlike in the Table II where T_A.shape is expected to be equal
to T_B.shape, this implementation is generalized so that the shapes of
T_A and T_B can be different. In the case where T_A.shape == T_B.shape,
then our algorithm reduces down to the same algorithm found in Table II.
Additionally, unlike STAMP where the exclusion zone is m/2, the default
exclusion zone for STOMP is m/4 (See Definition 3 and Figure 3).
For self-joins, set `ignore_trivial = True` in order to avoid the
trivial match.
Note that left and right matrix profiles are only available for self-joins.
"""
core.check_dtype(T_A)
if T_B is None: # Self join!
T_B = T_A
ignore_trivial = True
core.check_dtype(T_B)
if ignore_trivial == False and core.are_arrays_equal(T_A, T_B): # pragma: no cover
logger.warning("Arrays T_A, T_B are equal, which implies a self-join.")
logger.warning("Try setting `ignore_trivial = True`.")
if ignore_trivial and core.are_arrays_equal(T_A, T_B) == False: # pragma: no cover
logger.warning("Arrays T_A, T_B are not equal, which implies an AB-join.")
logger.warning("Try setting `ignore_trivial = False`.")
n = T_B.shape[0]
k = T_A.shape[0]-m+1
l = n-m+1
excl_zone = int(np.ceil(m/4)) # See Definition 3 and Figure 3
M_T, Σ_T = core.compute_mean_std(T_A, m)
μ_Q, σ_Q = core.compute_mean_std(T_B, m)
out = np.empty((l, 4), dtype=object)
profile = np.empty((l,), dtype='float64')
indices = np.empty((l, 3), dtype='int64')
start = 0
stop = l
profile[start], indices[start, :] = \
_get_first_stump_profile(start, T_A, T_B, m, excl_zone, M_T,
Σ_T, ignore_trivial)
QT, QT_first = _get_QT(start, T_A, T_B, m)
profile[start+1:stop], indices[start+1:stop, :] = \
_stump(T_A, T_B, m, stop, excl_zone, M_T, Σ_T, QT, QT_first, μ_Q,
σ_Q, k, ignore_trivial, start+1)
out[:, 0] = profile
out[:, 1:4] = indices
threshold = 10e-6
if core.are_distances_too_small(out[:, 0], threshold=threshold): # pragma: no cover
logger.warning(f"A large number of values are smaller than {threshold}.")
logger.warning("For a self-join, try setting `ignore_trivial = True`.")
return out