-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps chosen / choice penalty #2
Comments
Hi @cfrancesco With sDTW, I don't think it's possible to get the "best path" using the cost matrix. The reason for that is the sDTW algorithm actually returns a value that corresponds to all possible alignment between the two inputs, weighted by their probability (see the comment from the original authors here). This question is probably best posted in the original sDTW repo. |
Ok, thank you! Then I'll investigate how to add penalties rather than inspecting the optimal path. |
No problem! Sure please do. |
Hi,
thanks for the implementation!
I'm still unfamiliar with it, would it be possible to extract or store the steps (or choice) taken during the optimization as it is doable with normal dwt implementations?
Or, equivalently, adding penalty terms for the different choices?
The text was updated successfully, but these errors were encountered: