A visualization library for Keras users with plots particularly useful for training and evaluating deep learning models.
TrainingLog - a live updated line graph with accuracy and loss metrics for each epoch
A live updated plot where each epoch is shown in a line graph. Adapted from livelossplot.
First import the package:
from kerasplotlib import TrainingLog
If you're in a Notebook:
%matplotlib inline
Then make sure that your model.fit includes the following:
callbacks=[TrainingLog()]
A pretty printer for text notebooks.