You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Minor correction in function plot_loss_accuracy(history) needed.
Run this on Keras 2.3.1 with correction from acc = history.history['acc'][-1] to acc = history.history['accuracy'][-1]
Note that history.history.keys()
gives:
dict_keys(['loss','accuracy'])
The text was updated successfully, but these errors were encountered:
Minor correction in function
plot_loss_accuracy(history)
needed.Run this on Keras 2.3.1 with correction from
acc = history.history['acc'][-1]
toacc = history.history['accuracy'][-1]
Note that
history.history.keys()
gives:
dict_keys(['loss','accuracy'])
The text was updated successfully, but these errors were encountered: