My code run ok, but the graph only show the loss value and I cant see the graph for accuracy value like in the course video. Can somebody help me ?
If you refer this file:
- In line 23, specify accuracy as
acc
instead ofaccuracy
. - In line 31, metrics to use are
'loss', 'val_loss', 'acc', 'val_acc'
2 Likes
Thanks, now it worked!