STIMP result mechanism #1043
-
Hi community,
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hi @aycabayraktar! Firstly, if you haven't had a chance, I would recommend reading the original SKIMP paper as it contains a lot of details that have been captured in
There is a lot to unpack here so I'll try to summarize the important points! For a time series, So, the one thing to keep in mind is that the maximum (theoretical) allowable window size actually can't be the full length of the time series due to the fact that we need to always account for an (left and right) exclusion zone. To demonstrate this, we can naively set
Notice that only the FIRST and LAST subsequences has "enough space" to have a nearest neighbor. If we simply increase our window size by one to
And no subsequence has any nearest neighbors because they have all been excluded since all nearest neighbors (subsequences) would lie within their respective exclusion zones!
Perhaps, there is a bit of misunderstanding here. I am wondering if this tutorial (still a work-in-progress) might help? |
Beta Was this translation helpful? Give feedback.
I think I see the problem.
pmp._PAN
stores the matrix profiles ordered from smallestm
to largestm
. However, the matrix profiles are NOT computed in this order and, instead, are computed in "breadth-first-search" (BFS) order. Thus, in order to retrieve the correct BFS order, we must follow the procedure in thepan
transformation function (shown in the permalink above) but this example should work: