Skip to content

Commit

Permalink
Update models weights for inception_v3, vgg11, and vgg13 (#3851)
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasHug authored May 17, 2021
1 parent 6397190 commit 541e0f1
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion torchvision/models/inception.py
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@

model_urls = {
# Inception v3 ported from TensorFlow
'inception_v3_google': 'https://download.pytorch.org/models/inception_v3_google-1a9a5a14.pth',
'inception_v3_google': 'https://download.pytorch.org/models/inception_v3_google-0cc3c7bd.pth',
}

InceptionOutputs = namedtuple('InceptionOutputs', ['logits', 'aux_logits'])
4 changes: 2 additions & 2 deletions torchvision/models/vgg.py
Original file line number Diff line number Diff line change
@@ -11,8 +11,8 @@


model_urls = {
'vgg11': 'https://download.pytorch.org/models/vgg11-bbd30ac9.pth',
'vgg13': 'https://download.pytorch.org/models/vgg13-c768596a.pth',
'vgg11': 'https://download.pytorch.org/models/vgg11-8a719046.pth',
'vgg13': 'https://download.pytorch.org/models/vgg13-19584684.pth',
'vgg16': 'https://download.pytorch.org/models/vgg16-397923af.pth',
'vgg19': 'https://download.pytorch.org/models/vgg19-dcbb9e9d.pth',
'vgg11_bn': 'https://download.pytorch.org/models/vgg11_bn-6002323d.pth',

0 comments on commit 541e0f1

Please sign in to comment.