lmoroney / dlaicourse

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

Nontype error in code #116

Open rustamali9183 opened 4 years ago

rustamali9183 commented 4 years ago

in latest version of tensorflow writting "if(logs.get('accuracy')>0.99):" raises an error i.e nontype can't be compared with float type value so this code needs to be changed like this "if(logs.get('acc')>0.99):"