__init__.py 555 Bytes
Newer Older
soumith's avatar
soumith committed
1
2
3
from .lsun import LSUN, LSUNClass
from .folder import ImageFolder
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, 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
soumith's avatar
soumith committed
11

soumith's avatar
soumith committed
12
__all__ = ('LSUN', 'LSUNClass',
13
           'ImageFolder', 'FakeData',
Soumith Chintala's avatar
Soumith Chintala committed
14
           'CocoCaptions', 'CocoDetection',
15
           'CIFAR10', 'CIFAR100', 'FashionMNIST',
neoglez's avatar
neoglez committed
16
           'MNIST', 'STL10', 'SVHN', 'PhotoTour', 'SEMEION')