Created
July 24, 2021 09:47
-
-
Save johnleung8888/5739c7e6e6bc2fb37c9abc0a008d27a7 to your computer and use it in GitHub Desktop.
Multi-class classification with MNIST.ipynb
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(x_train, y_train),(x_test, y_test) = tf.keras.datasets.mnist.load_data()
In TensorFlow, it provide an efficient way for us to load and split the mnist dataset into training set, testing set, training labels and testing labels in just one code.