-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
theano max works but not min #3831
Comments
I am not able to reproduce this error.
|
I tried with the exact same specs, I too was not able to reproduce the error, it ran successfully. Not sure, what's causing the error.
|
I'm not too sure if this is a work-around, please feel free to correct me, |
This flag is set automatically for macOS to solve a different issue, but is not set for Linux. If this solves the problem, we could add it for that platform as well. |
@sammosummo Did you keep encountering this issue in newer releases? |
Works fine with this setup:
|
Thanks for the feedback. Will close this issue as it seems we did not hear more reports like this |
Its seems that my version of PyMC3/Theano won't compile models containing
tt.min()
but will compile models withtt.max()
. I've tried replacingtt.min([a, b], axis=0)
with the workaround-tt.max([-a, -b], axis=0)
and while this works for the toy example below, in real models, it sometimes yields the same compilation error as usingmin
. This must be related but I haven't figured out the critical issue.The text was updated successfully, but these errors were encountered: