-
Notifications
You must be signed in to change notification settings - Fork 6.9k
New issue
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
Add new weights for ResNet101 and ResNet151 #4811
Conversation
💊 CI failures summary and remediationsAs of commit bdc7c67 (more details on the Dr. CI page): 💚 💚 Looks good so far! There are no failures yet. 💚 💚 This comment was automatically generated by Dr. CI (expand for details).Please report bugs/suggestions to the (internal) Dr. CI Users group. |
@@ -127,6 +137,16 @@ class ResNet152Weights(Weights): | |||
"acc@5": 94.046, | |||
}, | |||
) | |||
ImageNet1K_RefV2 = WeightEntry( | |||
url="https://download.pytorch.org/models/resnet152-089c0848.pth", | |||
transforms=partial(ImageNetEval, crop_size=224, resize_size=232), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the resize_size was not used in the original training?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nope, that's a new optimization only available on the new weights. :-)
Reviewed By: datumbox Differential Revision: D32064684 fbshipit-source-id: f42aec92bb919a7264023406b85df48656c673d5
Fixes partially #3995
cc @datumbox