-
Notifications
You must be signed in to change notification settings - Fork 755
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
mxnet 1.5.0 compatibility #245
Conversation
Errata: it looks like there's more issues than the one I addressed in the initial commit (despite the fact all tests are passing locally :-/). Diving deeper. |
I'm not sure what's running in the tests: these logs mention at some point
But if I locally install it the same way as in CI (using Could it be some caching messing up with this? @szha |
Nevermind: I think this problem is caused by #131 |
316029f
to
9625eef
Compare
9625eef
to
d5260e8
Compare
There seem to be an issue with sampling on mxnet-mkl, see here: http://ci.mxnet.io/blue/rest/organizations/jenkins/pipelines/GluonTS-py3-cpu-unittest/branches/PR-245/runs/7/nodes/81/steps/126/log/?start=0 |
Related mxnet issue: apache/mxnet#16135 |
The fix for the issue mentioned above is merged into mxnet: apache/mxnet#16139 |
@strawberrypie good point, that’s something which is worth looking into. Although I think that’s kind of an experimental API of MXNet’s? Another thing that we’ll look into is the numpy-compatible arrays API, see apache/mxnet#14253 |
Btw I think this PR can be closed in favor of a new one whenever the mxnet version can be bumped |
Description of changes: MXNet requirement was set to
<1.5.*
in #215 due to some incompatibility withmxnet-1.5.0
. By running tests, it seems like the only problem was in the code for WaveNet. This PR updates the problematic lines to make our WaveNet implementation compatible withmxnet-1.5.0
.By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.