'Tensor' object has no attribute 'sahpe'
时间: 2023-11-19 09:05:55 浏览: 91
AttributeError: module 'tensorflow.compat.v1' has no attribute '
'Tensor' object has no attribute 'sahpe'这个错误通常是由于代码中拼写错误导致的。正确的属性名称是'shape'而不是'sahpe'。请检查代码中是否存在此类拼写错误。
以下是一个例子,展示了如何使用TensorFlow中的张量对象的形状属性:
```python
import tensorflow as tf
# 创建一个形状为[2, 3]的张量
x = tf.constant([[1, 2, 3], [4, 5, 6]])
# 获取张量的形状
print(x.shape) # 输出:(2, 3)
```
阅读全文