print(image2.shape, label2.shape) AttributeError: 'RandomCrop' object has no attribute 'shape'
时间: 2023-10-23 14:48:56 浏览: 81
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误是因为在代码中使用了一个名为 "RandomCrop" 的对象,但是该对象没有 "shape" 属性,因此在尝试打印图像和标签的形状时引发了 AttributeError。您需要检查代码并找出为什么对象缺少 "shape" 属性,可能需要使用其他对象来对图像进行裁剪而不是使用 "RandomCrop"。
阅读全文