【问题解决】AttributeError: ‘_SingleProcessDataLoaderIter‘ object has no attribute ‘next‘

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档

文章目录

  • 一、问题描述
  • 二、问题解决


一、问题描述

在运行花朵分类的代码的时候,报错:

AttributeError: '_SingleProcessDataLoaderIter' object has no attribute 'next'
出错代码行
【问题解决】AttributeError: ‘_SingleProcessDataLoaderIter‘ object has no attribute ‘next‘_第1张图片

二、问题解决

由于Python的版本问题,next()不能使用了

修改代码为:

images, labels = dataiter.__next__()

你可能感兴趣的:(python中的bug解决,pytorch,神经网络)