Keras output mainly shows epoch and loss after each iteration.
Epoch: In terms of artificial neural networks, an epoch refers to one cycle through the full training dataset. Usually, training a neural network takes more than a few epochs.
Loss: A scalar value that we attempt to minimize during our training of the model. The lower the loss, the closer our predictions are to the true labels.
You should include a list of metrics in your compile method, which could look like:
model.compile(optimizer='rmsprop', loss='categorical_crossentropy', metrics=['accuracy'])
You can run your model on validation during the fit method, such as:
model.fit(data, labels, validation_split=0.2)
If you wish to learn Python, then check out this Python Course by Intellipaat.
Hope this answer helps.