Published
- 1 min read
tensorflow mnist dataset import
The solution for this is noted below
tensorflow mnist dataset import
Solution
from tensorflow.keras.datasets import mnist
(X_train, Y_train), (X_test, Y_test) = mnist.load_data()
Try other methods by searching on the site. That is if this doesn’t work