File tree 1 file changed +68
-22
lines changed 1 file changed +68
-22
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ Torchvision provides many built-in datasets in the ``torchvision.datasets``
5
5
module, as well as utility classes for building your own datasets.
6
6
7
7
Built-in datasets
8
- ~~~~~~~~~~~~~~~~~
8
+ -----------------
9
9
10
10
All datasets are subclasses of :class: `torch.utils.data.Dataset `
11
11
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:
25
25
``transform `` and ``target_transform `` to transform the input and target respectively.
26
26
You can also create your own datasets using the provided :ref: `base classes <base_classes_datasets >`.
27
27
28
+ Image classification
29
+ ~~~~~~~~~~~~~~~~~~~~
28
30
29
31
.. autosummary ::
30
32
:toctree: generated/
@@ -35,61 +37,105 @@ You can also create your own datasets using the provided :ref:`base classes <bas
35
37
CelebA
36
38
CIFAR10
37
39
CIFAR100
38
- Cityscapes
39
- CocoCaptions
40
- CocoDetection
41
40
Country211
42
41
DTD
43
42
EMNIST
44
43
EuroSAT
45
44
FakeData
46
45
FashionMNIST
47
46
FER2013
47
+ FGVCAircraft
48
48
Flickr8k
49
49
Flickr30k
50
50
Flowers102
51
- FlyingChairs
52
- FlyingThings3D
53
51
Food101
54
- FGVCAircraft
55
52
GTSRB
56
- HD1K
57
- HMDB51
58
- ImageNet
59
53
INaturalist
60
- Kinetics400
61
- Kitti
62
- KittiFlow
54
+ ImageNet
63
55
KMNIST
64
56
LFWPeople
65
- LFWPairs
66
57
LSUN
67
58
MNIST
68
59
Omniglot
69
60
OxfordIIITPet
70
- PCAM
71
- PhotoTour
72
61
Places365
73
- RenderedSST2
62
+ PCAM
74
63
QMNIST
75
- SBDataset
76
- SBU
64
+ RenderedSST2
77
65
SEMEION
78
- Sintel
66
+ SBU
79
67
StanfordCars
80
68
STL10
81
69
SUN397
82
70
SVHN
83
- UCF101
84
71
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
85
87
VOCSegmentation
86
88
VOCDetection
87
89
WIDERFace
88
90
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
+
89
135
.. _base_classes_datasets :
90
136
91
137
Base classes for custom datasets
92
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
138
+ --------------------------------
93
139
94
140
.. autosummary ::
95
141
:toctree: generated/
You can’t perform that action at this time.
0 commit comments