"vscode:/vscode.git/clone" did not exist on "6094bf8e07e6c120735a41e32eb1147a749ed605"
__init__.py 1.12 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
hysts's avatar
hysts committed
6
from .mnist import MNIST, EMNIST, FashionMNIST, KMNIST
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
19
from .sbd import SBDataset
20
from .vision import VisionDataset
soumith's avatar
soumith committed
21

soumith's avatar
soumith committed
22
__all__ = ('LSUN', 'LSUNClass',
23
           'ImageFolder', 'DatasetFolder', 'FakeData',
Soumith Chintala's avatar
Soumith Chintala committed
24
           'CocoCaptions', 'CocoDetection',
25
           'CIFAR10', 'CIFAR100', 'EMNIST', 'FashionMNIST',
hysts's avatar
hysts committed
26
           'MNIST', 'KMNIST', 'STL10', 'SVHN', 'PhotoTour', 'SEMEION',
27
           'Omniglot', 'SBU', 'Flickr8k', 'Flickr30k',
Philip Meier's avatar
Philip Meier committed
28
           'VOCSegmentation', 'VOCDetection', 'Cityscapes', 'ImageNet',
29
           'Caltech101', 'Caltech256', 'CelebA', 'SBDataset')