Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
vision
Commits
541e0f13
Unverified
Commit
541e0f13
authored
May 17, 2021
by
Nicolas Hug
Committed by
GitHub
May 17, 2021
Browse files
Update models weights for inception_v3, vgg11, and vgg13 (#3851)
parent
63971901
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
torchvision/models/inception.py
torchvision/models/inception.py
+1
-1
torchvision/models/vgg.py
torchvision/models/vgg.py
+2
-2
No files found.
torchvision/models/inception.py
View file @
541e0f13
...
@@ -12,7 +12,7 @@ __all__ = ['Inception3', 'inception_v3', 'InceptionOutputs', '_InceptionOutputs'
...
@@ -12,7 +12,7 @@ __all__ = ['Inception3', 'inception_v3', 'InceptionOutputs', '_InceptionOutputs'
model_urls
=
{
model_urls
=
{
# Inception v3 ported from TensorFlow
# 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'
])
InceptionOutputs
=
namedtuple
(
'InceptionOutputs'
,
[
'logits'
,
'aux_logits'
])
...
...
torchvision/models/vgg.py
View file @
541e0f13
...
@@ -11,8 +11,8 @@ __all__ = [
...
@@ -11,8 +11,8 @@ __all__ = [
model_urls
=
{
model_urls
=
{
'vgg11'
:
'https://download.pytorch.org/models/vgg11-
bbd30ac9
.pth'
,
'vgg11'
:
'https://download.pytorch.org/models/vgg11-
8a719046
.pth'
,
'vgg13'
:
'https://download.pytorch.org/models/vgg13-
c768596a
.pth'
,
'vgg13'
:
'https://download.pytorch.org/models/vgg13-
19584684
.pth'
,
'vgg16'
:
'https://download.pytorch.org/models/vgg16-397923af.pth'
,
'vgg16'
:
'https://download.pytorch.org/models/vgg16-397923af.pth'
,
'vgg19'
:
'https://download.pytorch.org/models/vgg19-dcbb9e9d.pth'
,
'vgg19'
:
'https://download.pytorch.org/models/vgg19-dcbb9e9d.pth'
,
'vgg11_bn'
:
'https://download.pytorch.org/models/vgg11_bn-6002323d.pth'
,
'vgg11_bn'
:
'https://download.pytorch.org/models/vgg11_bn-6002323d.pth'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment