Advertisement
irapilguy

Untitled

Jun 9th, 2020
856
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.36 KB | None | 0 0
  1. plt.plot(accuracy_change, label = 'train')
  2. plt.plot(test_accuracy, label = 'test')
  3. plt.xlabel('Epoch')
  4. plt.ylabel('Accuracy')
  5. plt.ylim([0.884, 0.8877])
  6. plt.legend(loc='lower right')
  7. plt.show()
  8.  
  9. plt.plot(loss_change, label = 'train')
  10. plt.plot(test_loss, label = 'test')
  11. plt.xlabel('Epoch')
  12. plt.ylabel('Loss')
  13. plt.ylim([0.31, 0.33])
  14. plt.legend(loc='lower right')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement