AttributeError:“ PngImageFile”对象没有属性“ apply_tfms”

时间:2020-07-20 01:16:51

标签: pytorch

使用learn.predict(img)预测图像类别时出现此错误 图像文件格式为png

AttributeError: PngImageFile object has no attribute apply_tfms

1 个答案:

答案 0 :(得分:0)

Google PngImageFile => http://code.nabla.net/doc/PIL/api/PIL/PngImagePlugin/PIL.PngImagePlugin.PngImageFile.html

Google apply_tfms => https://docs.fast.ai/vision.image.html#Image.apply_tfms

该呼叫正在等待fastai Image,但似乎您正在传递PIL图片。

没有实际的代码就无法确定,但这似乎是一个可能的原因。