__init__.py 1.6 KB
Newer Older
soumith's avatar
soumith committed
1
from .lsun import LSUN, LSUNClass
2
from .folder import ImageFolder, DatasetFolder
soumith's avatar
soumith committed
3
from .coco import CocoCaptions, CocoDetection
Soumith Chintala's avatar
Soumith Chintala committed
4
from .cifar import CIFAR10, CIFAR100
Elad Hoffer's avatar
Elad Hoffer committed
5
from .stl10 import STL10
6
from .mnist import MNIST, EMNIST, FashionMNIST, KMNIST, QMNIST
7
from .svhn import SVHN
soumith's avatar
soumith committed
8
from .phototour import PhotoTour
9
from .fakedata import FakeData
neoglez's avatar
neoglez committed
10
from .semeion import SEMEION
Sanyam Kapoor's avatar
Sanyam Kapoor committed
11
from .omniglot import Omniglot
12
from .sbu import SBU
13
from .flickr import Flickr8k, Flickr30k
14
from .voc import VOCSegmentation, VOCDetection
Michael Kösel's avatar
Michael Kösel committed
15
from .cityscapes import Cityscapes
Philip Meier's avatar
Philip Meier committed
16
from .imagenet import ImageNet
17
18
from .caltech import Caltech101, Caltech256
from .celeba import CelebA
Josh Bradley's avatar
Josh Bradley committed
19
from .widerface import WIDERFace
20
from .sbd import SBDataset
21
from .vision import VisionDataset
Francisco Massa's avatar
Francisco Massa committed
22
from .usps import USPS
23
from .kinetics import Kinetics400, Kinetics
24
25
from .hmdb51 import HMDB51
from .ucf101 import UCF101
Philip Meier's avatar
Philip Meier committed
26
from .places365 import Places365
Prabhat Roy's avatar
Prabhat Roy committed
27
from .kitti import Kitti
dgenzel2's avatar
dgenzel2 committed
28
from .inaturalist import INaturalist
Muhammed Abdullah's avatar
Muhammed Abdullah committed
29
from .lfw import LFWPeople, LFWPairs
soumith's avatar
soumith committed
30

soumith's avatar
soumith committed
31
__all__ = ('LSUN', 'LSUNClass',
32
           'ImageFolder', 'DatasetFolder', 'FakeData',
Soumith Chintala's avatar
Soumith Chintala committed
33
           'CocoCaptions', 'CocoDetection',
34
           'CIFAR10', 'CIFAR100', 'EMNIST', 'FashionMNIST', 'QMNIST',
hysts's avatar
hysts committed
35
           'MNIST', 'KMNIST', 'STL10', 'SVHN', 'PhotoTour', 'SEMEION',
36
           'Omniglot', 'SBU', 'Flickr8k', 'Flickr30k',
Philip Meier's avatar
Philip Meier committed
37
           'VOCSegmentation', 'VOCDetection', 'Cityscapes', 'ImageNet',
Josh Bradley's avatar
Josh Bradley committed
38
           'Caltech101', 'Caltech256', 'CelebA', 'WIDERFace', 'SBDataset',
39
           'VisionDataset', 'USPS', 'Kinetics400', "Kinetics", 'HMDB51', 'UCF101',
Muhammed Abdullah's avatar
Muhammed Abdullah committed
40
           'Places365', 'Kitti', "INaturalist", "LFWPeople", "LFWPairs"
Prabhat Roy's avatar
Prabhat Roy committed
41
           )