We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
import pytensor.tensor as pt x = pt.as_tensor(0) x.name = "x" y = pt.as_tensor(0) y.name = "y" assert y.name == "y" assert x.name == "x" # raises (x + y).eval() assert y.name == "y" assert x.name == "x" # raises
The text was updated successfully, but these errors were encountered:
do
observe
Seems to be caused by the MergeFeature here:
MergeFeature
pytensor/pytensor/graph/rewriting/basic.py
Lines 593 to 594 in 1da2891
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Description
The text was updated successfully, but these errors were encountered: