Skip to content

Commit c443898

Browse files
jdsgomesfacebook-github-bot
authored andcommitted
[fbsync] Categorize dataset doc page into sections (#5368)
Reviewed By: NicolasHug Differential Revision: D34140255 fbshipit-source-id: e171a94fbc24201aa10d7302035696df1955804a
1 parent e43dc90 commit c443898

File tree

1 file changed

+68
-22
lines changed

1 file changed

+68
-22
lines changed

docs/source/datasets.rst

Lines changed: 68 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Torchvision provides many built-in datasets in the ``torchvision.datasets``
55
module, as well as utility classes for building your own datasets.
66

77
Built-in datasets
8-
~~~~~~~~~~~~~~~~~
8+
-----------------
99

1010
All datasets are subclasses of :class:`torch.utils.data.Dataset`
1111
i.e, they have ``__getitem__`` and ``__len__`` methods implemented.
@@ -25,6 +25,8 @@ All the datasets have almost similar API. They all have two common arguments:
2525
``transform`` and ``target_transform`` to transform the input and target respectively.
2626
You can also create your own datasets using the provided :ref:`base classes <base_classes_datasets>`.
2727

28+
Image classification
29+
~~~~~~~~~~~~~~~~~~~~
2830

2931
.. autosummary::
3032
:toctree: generated/
@@ -35,61 +37,105 @@ You can also create your own datasets using the provided :ref:`base classes <bas
3537
CelebA
3638
CIFAR10
3739
CIFAR100
38-
Cityscapes
39-
CocoCaptions
40-
CocoDetection
4140
Country211
4241
DTD
4342
EMNIST
4443
EuroSAT
4544
FakeData
4645
FashionMNIST
4746
FER2013
47+
FGVCAircraft
4848
Flickr8k
4949
Flickr30k
5050
Flowers102
51-
FlyingChairs
52-
FlyingThings3D
5351
Food101
54-
FGVCAircraft
5552
GTSRB
56-
HD1K
57-
HMDB51
58-
ImageNet
5953
INaturalist
60-
Kinetics400
61-
Kitti
62-
KittiFlow
54+
ImageNet
6355
KMNIST
6456
LFWPeople
65-
LFWPairs
6657
LSUN
6758
MNIST
6859
Omniglot
6960
OxfordIIITPet
70-
PCAM
71-
PhotoTour
7261
Places365
73-
RenderedSST2
62+
PCAM
7463
QMNIST
75-
SBDataset
76-
SBU
64+
RenderedSST2
7765
SEMEION
78-
Sintel
66+
SBU
7967
StanfordCars
8068
STL10
8169
SUN397
8270
SVHN
83-
UCF101
8471
USPS
72+
73+
Image detection or segmentation
74+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
75+
76+
.. autosummary::
77+
:toctree: generated/
78+
:template: class_dataset.rst
79+
80+
CocoDetection
81+
CelebA
82+
Cityscapes
83+
GTSRB
84+
Kitti
85+
OxfordIIITPet
86+
SBDataset
8587
VOCSegmentation
8688
VOCDetection
8789
WIDERFace
8890

91+
Optical Flow
92+
~~~~~~~~~~~~
93+
94+
.. autosummary::
95+
:toctree: generated/
96+
:template: class_dataset.rst
97+
98+
FlyingChairs
99+
FlyingThings3D
100+
HD1K
101+
KittiFlow
102+
Sintel
103+
104+
Image pairs
105+
~~~~~~~~~~~
106+
107+
.. autosummary::
108+
:toctree: generated/
109+
:template: class_dataset.rst
110+
111+
LFWPairs
112+
PhotoTour
113+
114+
Image captioning
115+
~~~~~~~~~~~~~~~~
116+
117+
.. autosummary::
118+
:toctree: generated/
119+
:template: class_dataset.rst
120+
121+
CocoCaptions
122+
123+
Video classification
124+
~~~~~~~~~~~~~~~~~~~~
125+
126+
.. autosummary::
127+
:toctree: generated/
128+
:template: class_dataset.rst
129+
130+
HMDB51
131+
Kinetics400
132+
UCF101
133+
134+
89135
.. _base_classes_datasets:
90136

91137
Base classes for custom datasets
92-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
138+
--------------------------------
93139

94140
.. autosummary::
95141
:toctree: generated/

0 commit comments

Comments
 (0)