I've looked at a few tutorials to crack into Keras for deep learning using Convolutional Neural Networks. In the tutorial (and in Keras' official documentation), the MNIST dataset is loaded like so:
from keras.datasets import mnist
(x_train, y_train), (x_test, y_test) = mnist.load_data()
However, no explanation is offered as to why we have two tuples of data. My question is: what are x_train
and y_train
and how do they differ from their x_test
and y_test
counterparts?