Review v1.5.0#45
Open
dtibi69 wants to merge 12 commits into
Open
Conversation
Co-authored-by: Copilot Autofix powered by AI <[email protected]>
Fix wavelet norm
Updated the CHANGELOG to include new features and fixes for version 1.5.0.
Update CHANGELOG for version 1.5.0
dtibi69
commented
Jun 2, 2026
| r2 = r**2 | ||
| support_r = (r > 0.0) & (r < 1.0) | ||
| support_r = (r >= 0.0) & (r < 1.0) | ||
| r2 *= width_factor # optimized parameter (for L=4) to follow at best Littlewood Paley condition, see numerical integration in the notebook "BS_wavelet_kernel.ipynb" |
Contributor
Author
Contributor
There was a problem hiding this comment.
Actually the line denom = (1.0 - r2).clamp_min(eps) which comes just after puts the high valued segments (>1) to exp(-r2 / eps) (almost 0) so there is no discontinuity. But for readability I can limit also the r support to [0, width_factor**-.5[.
Contributor
There was a problem hiding this comment.
@dtibi69 I limited the r support to [0, width_factor**-.5[ here: https://github.com/STL-Proj/STL-Dev/pull/46/changes#diff-cc3e4a109ef54880c3ed70bb9dbd0ccb68bb00d1e34890e9fad079afb1231211
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

No description provided.