AttributeError: module 'tensorflow.compat.v1' has no attribute 'load_data'
时间: 2023-07-23 16:15:12 浏览: 220
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误通常发生在使用TensorFlow 2.x版本时,因为在TensorFlow 2.x中,MNIST数据集被直接集成在TensorFlow中,而不再需要通过Keras加载。您可以使用`tensorflow.keras.datasets.mnist`来加载MNIST数据集。下面是一个示例代码:
```python
import tensorflow as tf
(x_train, y_train), (x_test, y_test) = tf.keras.datasets.mnist.load_data()
```
请确保您的TensorFlow库是最新版本,以避免这个问题。如果问题仍然存在,请提供更多的代码和错误信息,以便我能够更好地帮助您解决问题。
阅读全文