We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
原文使用 images,labels=dataiter.next() 出现报错: AttributeError: '_MultiProcessingDataLoaderIter' object has no attribute 'next' 应更正为 images, labels = next(dataiter)
images,labels=dataiter.next()
AttributeError: '_MultiProcessingDataLoaderIter' object has no attribute 'next'
images, labels = next(dataiter)
The text was updated successfully, but these errors were encountered:
没错,估计是库的更新导致的,修改为next(dataiter)后能正常运行
Sorry, something went wrong.
No branches or pull requests
原文使用
images,labels=dataiter.next()
出现报错:
AttributeError: '_MultiProcessingDataLoaderIter' object has no attribute 'next'
应更正为
images, labels = next(dataiter)
The text was updated successfully, but these errors were encountered: