I'm a beginner to learn Keras using Python.
I've read some sample code of dataset loading using MNIST Dataset.
I don't understand the variable (X_train
, y_train
) and (X_test
, y_test
).
Please, help me explaining the purpose of these variables.
Also, what type of data are assigned to these variables?
from keras.datasets import mnist
from keras.models import Sequential
from keras.layers import Dense
from keras.utils import np_utils
# Load data
(X_train, y_train), (X_test, y_test) = mnist.load_data()