deep-learning-with-python-notebooks icon indicating copy to clipboard operation
deep-learning-with-python-notebooks copied to clipboard

plot y axis title fix

Open mohan-chinnappan-n opened this issue 6 years ago • 1 comments

mohan-chinnappan-n avatar Apr 16 '18 17:04 mohan-chinnappan-n

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')

slim-hmidi avatar Feb 27 '21 09:02 slim-hmidi