-
Notifications
You must be signed in to change notification settings - Fork 30
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
fix: also add tracks that failed smoothing to failed_tracks #1741
base: main
Are you sure you want to change the base?
Conversation
Capybara summary for PR 1741
|
I don't think we should be "hiding" tracks that failed smothing without a clear reason. If the tracks constituted by background, or have unreasonable parameters estimated, then we could reconsider. Would you agree? |
I thought that ship had sailed when we decided to hide tracks that fail extrapolation? How is smoothing different? |
Tracks that fail extrapolation do not have a usable set of parameters, so we can't store them. |
But we don't even attempt extrapolation when smoothing fails. If we want to allow tracks that failed smoothing, then we should still attempt extrapolation. |
Right, so in the current setup, smoothing has never ever failed, because if it would, that'd cause a segfault. If we apply your suggested change, if will be allowed to fail without interrupting anything. |
Should we pivot towards making this into a "fatal" exception? |
Define 'fatal'.
|
Fatal as in this was never expected to happen and user is forced to report/confront this. |
Briefly, what does this PR introduce?
Since #1677 we remove tracks that failed extrapolation. We don't do that with tracks that failed smoothing. This PR also applies the same treatment to tracks that failed smoothing.
What kind of change does this PR introduce?
Please check if this PR fulfills the following:
Does this PR introduce breaking changes? What changes might users need to make to their code?
No.
Does this PR change default behavior?
No.