Skip to content

Instantly share code, notes, and snippets.

View saurabhpal97's full-sized avatar

Saurabh Pal saurabhpal97

  • 13:00 (UTC -12:00)
View GitHub Profile
from keras.models import load_model
#load the model
test_model = load_model('weights-improvement-108-0.86.hdf5')
#calculate the performance metrics
perf = test_model.evaluate(x_test,y_test)
print('Validation loss - ',perf[0])