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
from autograd import numpy as np x = object() print(repr(np.array([x])))
Result:
array([array(<object object at 0x11360daf0>, dtype=object)], dtype=object)
It should be:
array([<object object at 0x11360daf0>], dtype=object)
Python version:
Python 3.8.2 (v3.8.2:7b3ab5921f, Feb 24 2020, 17:52:18) [Clang 6.0 (clang-600.0.57)] on darwin
Autograd version: 1.3 (installed with pip)
The text was updated successfully, but these errors were encountered:
fix and test for HIPS#552
99d52db
ndarray
agriyakhetarpal
Successfully merging a pull request may close this issue.
Result:
It should be:
Python version:
Autograd version: 1.3 (installed with pip)
The text was updated successfully, but these errors were encountered: