Created
June 16, 2022 18:23
-
-
Save SmiffyKMc/11de2fb03b5838bfc89c7ac701df16b9 to your computer and use it in GitHub Desktop.
Evaluating the model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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