-
Notifications
You must be signed in to change notification settings - Fork 0
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
UserWarnings about variable replacements #5
Comments
Oh-oh, they're thinking of making this an actual exception: Previously this just failed silently: https://github.com/Theano/Theano/blob/8e9611715b33672d4b65b3fe232988c4adac970a/theano/gof/fg.py#L488 I'm getting this error whenever I call python -c "import starry; starry.Map().flux().eval()" warns me /.../aesara/graph/fg.py:500: UserWarning: Variable argmax cannot be replaced; it isn't in the FunctionGraph
/.../aesara/graph/fg.py:500: UserWarning: Variable LimbDarkOp.1 cannot be replaced; it isn't in the FunctionGraph
/.../aesara/graph/fg.py:500: UserWarning: Variable LimbDarkOp.2 cannot be replaced; it isn't in the FunctionGraph
/.../aesara/graph/fg.py:500: UserWarning: Variable LimbDarkOp.3 cannot be replaced; it isn't in the FunctionGraph I bet you're going to get these a lot with |
Yeah I'm seeing some of these too. I'm not sure what the story is there! Let me know when you find the MWE. |
Ok the MWE is trivial: import aesara.tensor as tt
y = [0.0, 1.0]
print(tt.max(y).eval()) outputs
|
This certainly seems like a bug in |
The newest version of aesara is raising thousands of user warnings that look like
See here for instance.
@dfm Have you seen this, and any idea what's going on? If not, I'll dig into it.
The text was updated successfully, but these errors were encountered: