Clarification on documentation: does stumpy.match
rely on MPDist
?
#799
Replies: 7 comments
-
Hi @patrickfleith! Welcome to the STUMPY community and thank you for your question.
No, To be explicit, |
Beta Was this translation helpful? Give feedback.
-
Great, many thanks. And from what I observe there is no other routine which search for the best matching based on MPDsit, right? One would have to come up with his.her own search function? |
Beta Was this translation helpful? Give feedback.
-
That is correct. At the end of the day, you are computing a "distance" and then it is up to you to set a distance threshold that decides whether something is "significant" or not. |
Beta Was this translation helpful? Give feedback.
-
Ok great thanks I close the issue |
Beta Was this translation helpful? Give feedback.
-
@patrickfleith In the future, would you mind posting usage questions to our Github Discussions? This way, others may chime in and provide their perspective too. |
Beta Was this translation helpful? Give feedback.
-
@patrickfleith I think Let's start with function Lines 354 to 367 in 92ef4d5 So, this takes Lines 488 to 493 in 92ef4d5 As shown above, in line 490, function Okay...let's get back to the main point. Now, instead of Fortunately, Lines 166 to 179 in 92ef4d5 Based on my understanding, this function calculates the distance between Q and all subseqs of |
Beta Was this translation helpful? Give feedback.
-
@NimaSarajpoor Thanks for your great feedback. Indeed this sounds like a good way to implement what I was looking for. Thank you, I'll post the outcomes when I get back to it. And just to give a bit more context to readers of this thread, the reason why I was asking this: it is because the |
Beta Was this translation helpful? Give feedback.
-
I would like to understand better how the methods
stumpy.match
andstumpy.mass
compute the distance under the hood to find the best matches. I assume it relies on the measureMPDist
but it is not explicitly mention in the documentation which distance measure it uses. Could you clarify?Beta Was this translation helpful? Give feedback.
All reactions