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
cd1728d0
Unverified
Commit
cd1728d0
authored
Apr 19, 2021
by
Nicolas Hug
Committed by
GitHub
Apr 19, 2021
Browse files
Fix paper links of VGG models (#3684)
parent
79ee22da
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
torchvision/models/vgg.py
torchvision/models/vgg.py
+8
-8
No files found.
torchvision/models/vgg.py
View file @
cd1728d0
...
@@ -104,7 +104,7 @@ def _vgg(arch: str, cfg: str, batch_norm: bool, pretrained: bool, progress: bool
...
@@ -104,7 +104,7 @@ def _vgg(arch: str, cfg: str, batch_norm: bool, pretrained: bool, progress: bool
def
vgg11
(
pretrained
:
bool
=
False
,
progress
:
bool
=
True
,
**
kwargs
:
Any
)
->
VGG
:
def
vgg11
(
pretrained
:
bool
=
False
,
progress
:
bool
=
True
,
**
kwargs
:
Any
)
->
VGG
:
r
"""VGG 11-layer model (configuration "A") from
r
"""VGG 11-layer model (configuration "A") from
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`
.
_
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`_
.
Args:
Args:
pretrained (bool): If True, returns a model pre-trained on ImageNet
pretrained (bool): If True, returns a model pre-trained on ImageNet
...
@@ -115,7 +115,7 @@ def vgg11(pretrained: bool = False, progress: bool = True, **kwargs: Any) -> VGG
...
@@ -115,7 +115,7 @@ def vgg11(pretrained: bool = False, progress: bool = True, **kwargs: Any) -> VGG
def
vgg11_bn
(
pretrained
:
bool
=
False
,
progress
:
bool
=
True
,
**
kwargs
:
Any
)
->
VGG
:
def
vgg11_bn
(
pretrained
:
bool
=
False
,
progress
:
bool
=
True
,
**
kwargs
:
Any
)
->
VGG
:
r
"""VGG 11-layer model (configuration "A") with batch normalization
r
"""VGG 11-layer model (configuration "A") with batch normalization
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`
.
_
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`_
.
Args:
Args:
pretrained (bool): If True, returns a model pre-trained on ImageNet
pretrained (bool): If True, returns a model pre-trained on ImageNet
...
@@ -126,7 +126,7 @@ def vgg11_bn(pretrained: bool = False, progress: bool = True, **kwargs: Any) ->
...
@@ -126,7 +126,7 @@ def vgg11_bn(pretrained: bool = False, progress: bool = True, **kwargs: Any) ->
def
vgg13
(
pretrained
:
bool
=
False
,
progress
:
bool
=
True
,
**
kwargs
:
Any
)
->
VGG
:
def
vgg13
(
pretrained
:
bool
=
False
,
progress
:
bool
=
True
,
**
kwargs
:
Any
)
->
VGG
:
r
"""VGG 13-layer model (configuration "B")
r
"""VGG 13-layer model (configuration "B")
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`
.
_
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`_
.
Args:
Args:
pretrained (bool): If True, returns a model pre-trained on ImageNet
pretrained (bool): If True, returns a model pre-trained on ImageNet
...
@@ -137,7 +137,7 @@ def vgg13(pretrained: bool = False, progress: bool = True, **kwargs: Any) -> VGG
...
@@ -137,7 +137,7 @@ def vgg13(pretrained: bool = False, progress: bool = True, **kwargs: Any) -> VGG
def
vgg13_bn
(
pretrained
:
bool
=
False
,
progress
:
bool
=
True
,
**
kwargs
:
Any
)
->
VGG
:
def
vgg13_bn
(
pretrained
:
bool
=
False
,
progress
:
bool
=
True
,
**
kwargs
:
Any
)
->
VGG
:
r
"""VGG 13-layer model (configuration "B") with batch normalization
r
"""VGG 13-layer model (configuration "B") with batch normalization
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`
.
_
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`_
.
Args:
Args:
pretrained (bool): If True, returns a model pre-trained on ImageNet
pretrained (bool): If True, returns a model pre-trained on ImageNet
...
@@ -148,7 +148,7 @@ def vgg13_bn(pretrained: bool = False, progress: bool = True, **kwargs: Any) ->
...
@@ -148,7 +148,7 @@ def vgg13_bn(pretrained: bool = False, progress: bool = True, **kwargs: Any) ->
def
vgg16
(
pretrained
:
bool
=
False
,
progress
:
bool
=
True
,
**
kwargs
:
Any
)
->
VGG
:
def
vgg16
(
pretrained
:
bool
=
False
,
progress
:
bool
=
True
,
**
kwargs
:
Any
)
->
VGG
:
r
"""VGG 16-layer model (configuration "D")
r
"""VGG 16-layer model (configuration "D")
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`
.
_
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`_
.
Args:
Args:
pretrained (bool): If True, returns a model pre-trained on ImageNet
pretrained (bool): If True, returns a model pre-trained on ImageNet
...
@@ -159,7 +159,7 @@ def vgg16(pretrained: bool = False, progress: bool = True, **kwargs: Any) -> VGG
...
@@ -159,7 +159,7 @@ def vgg16(pretrained: bool = False, progress: bool = True, **kwargs: Any) -> VGG
def
vgg16_bn
(
pretrained
:
bool
=
False
,
progress
:
bool
=
True
,
**
kwargs
:
Any
)
->
VGG
:
def
vgg16_bn
(
pretrained
:
bool
=
False
,
progress
:
bool
=
True
,
**
kwargs
:
Any
)
->
VGG
:
r
"""VGG 16-layer model (configuration "D") with batch normalization
r
"""VGG 16-layer model (configuration "D") with batch normalization
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`
.
_
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`_
.
Args:
Args:
pretrained (bool): If True, returns a model pre-trained on ImageNet
pretrained (bool): If True, returns a model pre-trained on ImageNet
...
@@ -170,7 +170,7 @@ def vgg16_bn(pretrained: bool = False, progress: bool = True, **kwargs: Any) ->
...
@@ -170,7 +170,7 @@ def vgg16_bn(pretrained: bool = False, progress: bool = True, **kwargs: Any) ->
def
vgg19
(
pretrained
:
bool
=
False
,
progress
:
bool
=
True
,
**
kwargs
:
Any
)
->
VGG
:
def
vgg19
(
pretrained
:
bool
=
False
,
progress
:
bool
=
True
,
**
kwargs
:
Any
)
->
VGG
:
r
"""VGG 19-layer model (configuration "E")
r
"""VGG 19-layer model (configuration "E")
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`
.
_
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`_
.
Args:
Args:
pretrained (bool): If True, returns a model pre-trained on ImageNet
pretrained (bool): If True, returns a model pre-trained on ImageNet
...
@@ -181,7 +181,7 @@ def vgg19(pretrained: bool = False, progress: bool = True, **kwargs: Any) -> VGG
...
@@ -181,7 +181,7 @@ def vgg19(pretrained: bool = False, progress: bool = True, **kwargs: Any) -> VGG
def
vgg19_bn
(
pretrained
:
bool
=
False
,
progress
:
bool
=
True
,
**
kwargs
:
Any
)
->
VGG
:
def
vgg19_bn
(
pretrained
:
bool
=
False
,
progress
:
bool
=
True
,
**
kwargs
:
Any
)
->
VGG
:
r
"""VGG 19-layer model (configuration 'E') with batch normalization
r
"""VGG 19-layer model (configuration 'E') with batch normalization
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`
.
_
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`_
.
Args:
Args:
pretrained (bool): If True, returns a model pre-trained on ImageNet
pretrained (bool): If True, returns a model pre-trained on ImageNet
...
...
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