AttributeError: EagerTensor object has no attribute 'reshape'. If you are looking for numpy-related methods, please run the following: from tensorflow.python.ops.numpy_ops import np_config np_config.enable_numpy_behavior()
时间: 2024-01-11 22:03:07 浏览: 322
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为在 TensorFlow 中使用了 NumPy 的方法,而 TensorFlow 默认不支持 NumPy 的方法。你可以尝试添加以下代码来启用 NumPy 的行为:
```python
from tensorflow.python.ops.numpy_ops import np_config
np_config.enable_numpy_behavior()
```
如果这个解决方法没有用,请检查你的代码是否有其他问题。
阅读全文