Skip to content

Instantly share code, notes, and snippets.

@aravindpai
Created March 12, 2020 10:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aravindpai/04e10186b3023bf6cc023acc1702a3bf to your computer and use it in GitHub Desktop.
Save aravindpai/04e10186b3023bf6cc023acc1702a3bf to your computer and use it in GitHub Desktop.
#loading best model
from keras.models import load_model
model = load_model('best_model.h5')
#evaluation
_,val_acc = model.evaluate(x_val_seq,y_val, batch_size=128)
print(val_acc)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment