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
I wonder if there's a way of removing the log
Loaded pretrained weights for efficientnet-b0
when I load my transfer learning model with
EfficientNet.from_pretrained('efficientnet-b0', num_classes=35)
I'm using efficientnet_pytorch==0.7.0
The text was updated successfully, but these errors were encountered:
I just added this functionality. You can now use verbose=False. For example:
verbose=False
model = cls.from_name(model_name, num_classes=35) load_pretrained_weights(model, model_name, weights_path=weights_path, load_fc=(num_classes == 1000), advprop=advprop, verbose=False) model._change_in_channels(in_channels)
Thanks for the issue!
Sorry, something went wrong.
verbose
from_pretrained
No branches or pull requests
I wonder if there's a way of removing the log
when I load my transfer learning model with
I'm using efficientnet_pytorch==0.7.0
The text was updated successfully, but these errors were encountered: