Skip to content

Instantly share code, notes, and snippets.

@SmiffyKMc
Created June 16, 2022 18:23
Show Gist options
  • Save SmiffyKMc/11de2fb03b5838bfc89c7ac701df16b9 to your computer and use it in GitHub Desktop.
Save SmiffyKMc/11de2fb03b5838bfc89c7ac701df16b9 to your computer and use it in GitHub Desktop.
Evaluating the model
test_model = keras.models.load_model(f'{hotDogDir}hotdog_classifier_v1.keras')
test_loss, test_acc = test_model.evaluate(test_dataset)
print(f"Test Acc: {test_acc:.3f}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment