-
Notifications
You must be signed in to change notification settings - Fork 4
Review v1.5.0 #45
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
Closed
Closed
Review v1.5.0 #45
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
460759d
change batch norm from mean of sqrt to sqrt of mean S2
pablo-richard c366747
add consistency notebook with mean_along_batch
pablo-richard 58ba8ae
fix normalisation with minimum changes
pablo-richard 8bd6ecc
large improve of wavelets and normalization
pablo-richard 678e399
implement ad hoc stats weighting and Nyquist filtering in synthesis
pablo-richard 846baf6
change smooth kernel from 2x2 to 6x6 and update Certif Notebooks
pablo-richard 2e1bdb9
Merge branch 'master' into fix-wavelet-norm
pablo-richard 5cd2fc5
Potential fix for pull request finding
pablo-richard a7358da
minor changes to merge PR
pablo-richard a12706d
Merge pull request #41 from STL-Proj/fix-wavelet-norm
pablo-richard a835ccb
Update CHANGELOG for version 1.5.0
pablo-richard eff1194
Merge pull request #43 from STL-Proj/changelog-patch
pablo-richard File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this width factor also be applied to the support's indicator function? Otherwise, the radial bump is no longer continuous, and its value blows up toward infinity on both sides of the bump:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually the line
denom = (1.0 - r2).clamp_min(eps)which comes just after puts the high valued segments (>1) toexp(-r2 / eps)(almost 0) so there is no discontinuity. But for readability I can limit also thersupport to[0, width_factor**-.5[.Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dtibi69 I limited the r support to [0, width_factor**-.5[ here: https://github.com/STL-Proj/STL-Dev/pull/46/changes#diff-cc3e4a109ef54880c3ed70bb9dbd0ccb68bb00d1e34890e9fad079afb1231211