We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if model_to_run == 'InceptionV3': mymodel = model.InceptionV3Wrapper_public( sess, model_saved_path=model_path, labels_path=labels_path) elif model_to_run == 'GoogleNet': # common_typos_disable mymodel = model.GoolgeNetWrapper_public( sess, model_saved_path=model_path, labels_path=labels_path)
in ace_helpers.py line 38, mymodel = model.GoolgeNetWrapper_public should be mymodel = model.GoogleNetWrapper_public, notice the spelling of Google
ace_helpers.py
mymodel = model.GoolgeNetWrapper_public
mymodel = model.GoogleNetWrapper_public
or you may meet error like : AttributeError: module 'tcav.model' has no attribute 'GoolgeNetWrapper_public'
AttributeError: module 'tcav.model' has no attribute 'GoolgeNetWrapper_public'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
in
ace_helpers.py
line 38,mymodel = model.GoolgeNetWrapper_public
should be
mymodel = model.GoogleNetWrapper_public
, notice the spelling of Googleor you may meet error like :
AttributeError: module 'tcav.model' has no attribute 'GoolgeNetWrapper_public'
The text was updated successfully, but these errors were encountered: