AttributeError: module 'keras.api._v2.keras.datasets.mnist' has no attribute 'load'
时间: 2023-10-22 15:03:55 浏览: 156
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为你使用了错误的导入语句。在Keras中,加载MNIST数据集的正确方式是使用`from keras.datasets import mnist`,然后调用`mnist.load_data()`来加载数据集。
请确保你的导入语句正确,并且你使用了正确的函数调用。如果问题仍然存在,请提供更多的代码和错误消息,以便我可以帮助你更好地解决这个问题。
阅读全文