lmoroney / dlaicourse

Notebooks for learning deep learning
5.66k stars 5.36k forks source link

Course 1 - Part 4 - Lesson 2 - Exercise 8 #20

Closed melhashash closed 3 years ago

melhashash commented 5 years ago
if(logs.get('loss')<0.4):
      print("\nReached 60% accuracy so cancelling training!")

it should be:

if(logs.get('acc')>0.6):
      print("\nReached 60% accuracy so cancelling training!")