Skip to content
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

Merged
merged 3 commits into from
Jan 20, 2020

Conversation

lostella
Copy link
Contributor

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.

@codecov-io
Copy link

codecov-io commented Jan 17, 2020

Codecov Report

Merging #564 into master will decrease coverage by <.01%.
The diff coverage is 100%.

Impacted file tree graph

@@            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
Impacted Files Coverage Δ
src/gluonts/distribution/piecewise_linear.py 100% <100%> (ø) ⬆️

@lostella lostella added this to the v0.5 milestone Jan 19, 2020
@lostella lostella requested a review from vafl January 20, 2020 14:39
Comment on lines -339 to -347
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')
Copy link
Contributor Author

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?

Copy link
Contributor

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).

@lostella lostella merged commit 6338eb2 into awslabs:master Jan 20, 2020
@lostella lostella deleted the fix-pwl-2 branch January 20, 2020 15:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants