Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. import matplotlib.pyplot as plt
  2. fig = plt.figure()
  3. plt.plot(history.history['val_loss'])
  4. plt.legend(['validation'], loc='upper left')
  5. plt.title('validation loss vs epoch')
  6. plt.ylabel('validation loss')
  7. plt.xlabel('Epoch')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement