-
Hello, My time series data has the following characteristics
I am trying to detect a single pattern from this data. The assumption is that we do not know how many times the work is repeated by the worker. I became interested in stumpy because of the mention of Find Top-K Motifs in the tutorial. I've tried Should I try another method? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@tnkjm Thank you for your question and welcome to the STUMPY community. To address your question, the short answer is "no" but note that the window size does not have to be exact (i.e., you just need to choose an approximate window size that is slightly larger than your pattern). If the task takes roughly the same amount of time across multiple users (with some small variance) then, assuming that the wrist coordinate is roughly similar, you should still be able to capture this with a large enough window size. Trying to capture a task that can span multiple time scales is a really, really hard problem. Here is a paper that I recently came across (not written by me) that claims to address this problem (i.e., when there is variance in your window size) but I have not tried it myself. |
Beta Was this translation helpful? Give feedback.
@tnkjm Thank you for your question and welcome to the STUMPY community. To address your question, the short answer is "no" but note that the window size does not have to be exact (i.e., you just need to choose an approximate window size that is slightly larger than your pattern). If the task takes roughly the same amount of time across multiple users (with some small variance) then, assuming that the wrist coordinate is roughly similar, you should still be able to capture this with a large enough window size. Trying to capture a task that can span multiple time scales is a really, really hard problem. Here is a paper that I recently came across (not written by me) that claims to address t…