Accuracy graph didnt show up

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:

  1. In line 23, specify accuracy as acc instead of accuracy.
  2. In line 31, metrics to use are 'loss', 'val_loss', 'acc', 'val_acc'
2 Likes

Thanks, now it worked!