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, |
|
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? |
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. |
|
Ok great thanks I close the issue |
|
@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. |
|
@patrickfleith I think Let's start with function So, this takes As shown above, in line 490, function Okay...let's get back to the main point. Now, instead of Fortunately, Based on my understanding, this function calculates the distance between Q and all subseqs of |
|
@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 |
Uh oh!
There was an error while loading. Please reload this page.
I would like to understand better how the methods
stumpy.matchandstumpy.masscompute the distance under the hood to find the best matches. I assume it relies on the measureMPDistbut it is not explicitly mention in the documentation which distance measure it uses. Could you clarify?All reactions