AttributeError: module 'mnist' has no attribute 'test_images'
时间: 2024-05-31 11:06:11 浏览: 252
mdk_armcc_user_guide.pdf
AttributeError: module 'mnist' has no attribute 'test_images' 这个错误提示表明,在模块 mnist 中并没有名为 test_images 的属性。这通常是因为你在代码中调用了一个不存在的属性或方法。
可能的原因是你使用的 mnist 模块版本不同,或者你的代码中有拼写错误或语法错误。
建议检查你的代码中是否正确导入了 mnist 模块,并且确保该模块包含 test_images 属性。如果你使用的是第三方库中的 mnist 模块,可能需要查看官方文档以确认该模块的属性和方法。
阅读全文