AttributeError: module 'torchvision.models.mobilenet' has no attribute 'classifier'
时间: 2023-11-12 21:07:26 浏览: 162
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是由于使用了过时的代码或版本不兼容引起的。在新版本的torchvision中,MobileNet的结构已经发生了变化,不再有名为“classifier”的属性。相反,它现在使用了名为“fc”的属性。因此,如果您正在使用旧版本的代码,请更新代码以适应新版本的torchvision。如果您正在使用新版本的代码,请确保您的代码正确引用了MobileNet的属性。
阅读全文