Skip to content

Commit cd1728d

Browse files
authored
Fix paper links of VGG models (#3684)
1 parent 79ee22d commit cd1728d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

torchvision/models/vgg.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def _vgg(arch: str, cfg: str, batch_norm: bool, pretrained: bool, progress: bool
104104

105105
def vgg11(pretrained: bool = False, progress: bool = True, **kwargs: Any) -> VGG:
106106
r"""VGG 11-layer model (configuration "A") from
107-
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`._
107+
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`_.
108108
109109
Args:
110110
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
115115

116116
def vgg11_bn(pretrained: bool = False, progress: bool = True, **kwargs: Any) -> VGG:
117117
r"""VGG 11-layer model (configuration "A") with batch normalization
118-
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`._
118+
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`_.
119119
120120
Args:
121121
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) ->
126126

127127
def vgg13(pretrained: bool = False, progress: bool = True, **kwargs: Any) -> VGG:
128128
r"""VGG 13-layer model (configuration "B")
129-
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`._
129+
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`_.
130130
131131
Args:
132132
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
137137

138138
def vgg13_bn(pretrained: bool = False, progress: bool = True, **kwargs: Any) -> VGG:
139139
r"""VGG 13-layer model (configuration "B") with batch normalization
140-
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`._
140+
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`_.
141141
142142
Args:
143143
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) ->
148148

149149
def vgg16(pretrained: bool = False, progress: bool = True, **kwargs: Any) -> VGG:
150150
r"""VGG 16-layer model (configuration "D")
151-
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`._
151+
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`_.
152152
153153
Args:
154154
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
159159

160160
def vgg16_bn(pretrained: bool = False, progress: bool = True, **kwargs: Any) -> VGG:
161161
r"""VGG 16-layer model (configuration "D") with batch normalization
162-
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`._
162+
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`_.
163163
164164
Args:
165165
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) ->
170170

171171
def vgg19(pretrained: bool = False, progress: bool = True, **kwargs: Any) -> VGG:
172172
r"""VGG 19-layer model (configuration "E")
173-
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`._
173+
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`_.
174174
175175
Args:
176176
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
181181

182182
def vgg19_bn(pretrained: bool = False, progress: bool = True, **kwargs: Any) -> VGG:
183183
r"""VGG 19-layer model (configuration 'E') with batch normalization
184-
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`._
184+
`"Very Deep Convolutional Networks For Large-Scale Image Recognition" <https://arxiv.org/pdf/1409.1556.pdf>`_.
185185
186186
Args:
187187
pretrained (bool): If True, returns a model pre-trained on ImageNet

0 commit comments

Comments
 (0)