You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey! Great code by the way, but I want to point out an error. If I try to use InceptionResnetV2, I get "ModuleNotFoundError: No module named 'keras.applications.inceptionresnetv2'"
Hey! Great code by the way, but I want to point out an error. If I try to use InceptionResnetV2, I get "ModuleNotFoundError: No module named 'keras.applications.inceptionresnetv2'"
To fix that change
keras.applications.inceptionresnetv2
to
keras.application.inception_resnet_v2
in your main.py so that it would look like that:
The text was updated successfully, but these errors were encountered: