Using Anaconda Python 2.7 Windows 10.
I am training a language model using the Keras exmaple:
print(\'Build model...\') model = Sequential() model.ad
Thanks to Alloush,
Following parameter must be included in model.fit():
model.fit()
validation_data = (x_test, y_test)
If it is not defined, val_acc and val_loss will not be exist at output.
val_acc
val_loss