deep-learning-with-python-notebooks
deep-learning-with-python-notebooks copied to clipboard
plot y axis title fix
there is also another typo:
acc_values = history_dict['acc']
plt.plot(epochs, acc, 'bo', label='Training acc')
should be:
plt.plot(epochs, acc_values , 'bo', label='Training acc')