__init__.py 752 Bytes
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
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
soumith's avatar
soumith committed
14

soumith's avatar
soumith committed
15
__all__ = ('LSUN', 'LSUNClass',
16
           'ImageFolder', 'DatasetFolder', 'FakeData',
Soumith Chintala's avatar
Soumith Chintala committed
17
           'CocoCaptions', 'CocoDetection',
18
           'CIFAR10', 'CIFAR100', 'EMNIST', 'FashionMNIST',
Sanyam Kapoor's avatar
Sanyam Kapoor committed
19
           'MNIST', 'STL10', 'SVHN', 'PhotoTour', 'SEMEION',
20
           'Omniglot', 'SBU', 'Flickr8k', 'Flickr30k')