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
12bb8873
Unverified
Commit
12bb8873
authored
Jun 16, 2022
by
Nicolas Hug
Committed by
GitHub
Jun 16, 2022
Browse files
Fix all broken URLs (#6176)
parent
ac5dc51a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
10 deletions
+10
-10
torchvision/datasets/caltech.py
torchvision/datasets/caltech.py
+2
-2
torchvision/datasets/kinetics.py
torchvision/datasets/kinetics.py
+1
-1
torchvision/models/quantization/googlenet.py
torchvision/models/quantization/googlenet.py
+1
-1
torchvision/models/quantization/resnet.py
torchvision/models/quantization/resnet.py
+4
-4
torchvision/prototype/datasets/_builtin/caltech.py
torchvision/prototype/datasets/_builtin/caltech.py
+2
-2
No files found.
torchvision/datasets/caltech.py
View file @
12bb8873
...
...
@@ -9,7 +9,7 @@ from .vision import VisionDataset
class
Caltech101
(
VisionDataset
):
"""`Caltech 101 <http://
www.vision
.caltech.edu/
Image_Datasets/Caltech101/
>`_ Dataset.
"""`Caltech 101 <http
s
://
data
.caltech.edu/
records/20086
>`_ Dataset.
.. warning::
...
...
@@ -146,7 +146,7 @@ class Caltech101(VisionDataset):
class
Caltech256
(
VisionDataset
):
"""`Caltech 256 <http://
www.vision
.caltech.edu/
Image_Datasets/Caltech256/
>`_ Dataset.
"""`Caltech 256 <http
s
://
data
.caltech.edu/
records/20087
>`_ Dataset.
Args:
root (string): Root directory of dataset where directory
...
...
torchvision/datasets/kinetics.py
View file @
12bb8873
...
...
@@ -21,7 +21,7 @@ def _dl_wrap(tarpath: str, videopath: str, line: str) -> None:
class
Kinetics
(
VisionDataset
):
"""`Generic Kinetics <https://deepmind.com/
research/
open-source/
open-source-datasets/
kinetics
/
>`_
"""`Generic Kinetics <https://
www.
deepmind.com/open-source/kinetics>`_
dataset.
Kinetics-400/600/700 are action recognition video datasets.
...
...
torchvision/models/quantization/googlenet.py
View file @
12bb8873
...
...
@@ -165,7 +165,7 @@ def googlenet(
quantize (bool, optional): If True, return a quantized version of the model. Default is False.
**kwargs: parameters passed to the ``torchvision.models.quantization.QuantizableGoogLeNet``
base class. Please refer to the `source code
<https://github.com/pytorch/vision/blob/main/torchvision/models/quantization
.
googlenet.py>`_
<https://github.com/pytorch/vision/blob/main/torchvision/models/quantization
/
googlenet.py>`_
for more details about this class.
.. autoclass:: torchvision.models.quantization.GoogLeNet_QuantizedWeights
...
...
torchvision/models/quantization/resnet.py
View file @
12bb8873
...
...
@@ -302,7 +302,7 @@ def resnet18(
quantize (bool, optional): If True, return a quantized version of the model. Default is False.
**kwargs: parameters passed to the ``torchvision.models.quantization.QuantizableResNet``
base class. Please refer to the `source code
<https://github.com/pytorch/vision/blob/main/torchvision/models/quantization
.
resnet.py>`_
<https://github.com/pytorch/vision/blob/main/torchvision/models/quantization
/
resnet.py>`_
for more details about this class.
.. autoclass:: torchvision.models.quantization.ResNet18_QuantizedWeights
...
...
@@ -351,7 +351,7 @@ def resnet50(
quantize (bool, optional): If True, return a quantized version of the model. Default is False.
**kwargs: parameters passed to the ``torchvision.models.quantization.QuantizableResNet``
base class. Please refer to the `source code
<https://github.com/pytorch/vision/blob/main/torchvision/models/quantization
.
resnet.py>`_
<https://github.com/pytorch/vision/blob/main/torchvision/models/quantization
/
resnet.py>`_
for more details about this class.
.. autoclass:: torchvision.models.quantization.ResNet50_QuantizedWeights
...
...
@@ -400,7 +400,7 @@ def resnext101_32x8d(
quantize (bool, optional): If True, return a quantized version of the model. Default is False.
**kwargs: parameters passed to the ``torchvision.models.quantization.QuantizableResNet``
base class. Please refer to the `source code
<https://github.com/pytorch/vision/blob/main/torchvision/models/quantization
.
resnet.py>`_
<https://github.com/pytorch/vision/blob/main/torchvision/models/quantization
/
resnet.py>`_
for more details about this class.
.. autoclass:: torchvision.models.quantization.ResNeXt101_32X8D_QuantizedWeights
...
...
@@ -443,7 +443,7 @@ def resnext101_64x4d(
quantize (bool, optional): If True, return a quantized version of the model. Default is False.
**kwargs: parameters passed to the ``torchvision.models.quantization.QuantizableResNet``
base class. Please refer to the `source code
<https://github.com/pytorch/vision/blob/main/torchvision/models/quantization
.
resnet.py>`_
<https://github.com/pytorch/vision/blob/main/torchvision/models/quantization
/
resnet.py>`_
for more details about this class.
.. autoclass:: torchvision.models.quantization.ResNeXt101_64X4D_QuantizedWeights
...
...
torchvision/prototype/datasets/_builtin/caltech.py
View file @
12bb8873
...
...
@@ -30,7 +30,7 @@ def _caltech101_info() -> Dict[str, Any]:
@
register_dataset
(
"caltech101"
)
class
Caltech101
(
Dataset
):
"""
- **homepage**: http://
www.vision
.caltech.edu/
Image_Datasets/Caltech101
- **homepage**: http
s
://
data
.caltech.edu/
records/20086
- **dependencies**:
- <scipy `https://scipy.org/`>_
"""
...
...
@@ -159,7 +159,7 @@ def _caltech256_info() -> Dict[str, Any]:
@
register_dataset
(
"caltech256"
)
class
Caltech256
(
Dataset
):
"""
- **homepage**: http://
www.vision
.caltech.edu/
Image_Datasets/Caltech256
- **homepage**: http
s
://
data
.caltech.edu/
records/20087
"""
def
__init__
(
...
...
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