AttributeError: module 'torchvision.datasets' has no attribute 'Flowers102'
时间: 2023-10-29 22:56:35 浏览: 256
导入FashionMNIST数据集时报错module ‘torchvision.datasets’ has no attribute ‘FashionMNIS’
出AttributeError: module 'torchvision.datasets' has no attribute 'Flowers102'错误的原因是torchvision.datasets模块中没有Flowers102属性。这可能是因为你使用的torchvision版本较低或者该版本中没有包含Flowers102数据集。
解决这个问题的方法是升级torchvision到一个支持Flowers102数据集的版本。你可以使用以下命令来升级torchvision:
pip install torchvision==0.4.1
如果你使用的是anaconda环境并且创建了多个环境,你需要进入对应的环境并使用以下命令来安装指定版本的torchvision:
conda activate [环境] //例如:conda activate pytorch
pip install torchvision==0.4.1
请注意,以上命令中的版本号0.4.1只是一个示例,你可以根据需要选择一个合适的版本。如果你不确定要安装哪个版本,可以尝试输入一个不存在的版本号,系统会给出相应的提示。
阅读全文