p.217の下記コードでエラー(AttributeError: 'Image' object has no attribute 'permute')が発生します。 ``` img, _ = cifar2[0] plt.imshow(img.permute(1, 2, 0)) plt.show() ```