Have you been using the 'History' object returned by the fit() functions of Keras to graph or visualize the training history of your models? And have you been getting a 'KeyError' type error such as the following since recent Keras upgrade and wondering why?
Traceback (most recent call last): File "lenet_mnist_keras.py", line 163, in <module> graph_training_history(history) File "lenet_mnist_keras.py", line 87, in graph_training_history plt.plot(history.history['acc']) KeyError: 'acc'
The KeyError: 'acc' when attempting to read the history object |
Traceback (most recent call last): File "lenet_mnist_keras.py", line 163, in <module> graph_training_history(history) File "lenet_mnist_keras.py", line 88, in graph_training_history plt.plot(history.history['val_acc']) KeyError: 'val_acc'
The KeyError: 'val_acc' when attempting to read the history object |
Well, this is due to a breaking change introduced in Keras release 2.3.0.