Using Anaconda Python 2.7 Windows 10.
I am training a language model using the Keras exmaple:
print(\'Build model...\') model = Sequential() model.ad
Another option is CSVLogger: https://keras.io/callbacks/#csvlogger. It creates a csv file appending the result of each epoch. Even if you interrupt training, you get to see how it evolved.