__init__.py 285 Bytes
Newer Older
soumith's avatar
soumith committed
1
2
3
4
from .lsun import LSUNDataset, LSUNClassDataset
from .folder import ImageFolderDataset
from .coco import CocoCaptionsDataset, CocoDetectionDataset

soumith's avatar
soumith committed
5
6
7
__all__ = ('LSUNDataset', 'LSUNClassDataset',
           'ImageFolderDataset',
           'CocoCaptionsDataset', 'CocoDetectionDataset')