lmoroney/dlaicourse

Nontype error in code

rustamali9183 opened this issue · 0 comments

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):"