-
Notifications
You must be signed in to change notification settings - Fork 777
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 bug in cdf method of piecewise linear distributions #564
Conversation
Codecov Report
@@ Coverage Diff @@
## master #564 +/- ##
==========================================
- Coverage 83.27% 83.27% -0.01%
==========================================
Files 178 178
Lines 9958 9955 -3
==========================================
- Hits 8293 8290 -3
Misses 1665 1665
|
thresh = F.zeros_like(slopes) + 20.0 | ||
I_grt_thresh = F.broadcast_greater_equal(slopes, thresh) | ||
I_sml_thresh = F.broadcast_lesser(slopes, thresh) | ||
slopes_proj = ( | ||
I_sml_thresh | ||
* F.Activation(data=(I_sml_thresh * slopes), act_type="softrelu") | ||
+ I_grt_thresh * slopes | ||
) | ||
# slopes = F.Activation(slopes, 'softrelu') |
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.
I'm not sure what all this logic was needed for: I checked and softrelu seems to behave fine with inputs much larger than 20 (when it's essentially the identity function). Maybe this was added in a tentative of fixing all other issues?
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.
Yes, this is outdated. There used to be an mxnet bug but the fix should already be in 1.4 (https://github.com/apache/incubator-mxnet/pull/6834/files).
Issue #, if available: partially addressing #563
Description of changes: This fixes a bug in the cdf method of PiecewiseLinear, which was returning values larger than 1.0: this addresses the simpler example in #563. The more complex example there has to do with numerical problems, which make the cdf evaluation fail there, and crps as well as a consequence I believe. That problem will need more care.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.