mmclassification/mmcls/datasets/__init__.py

25 lines
1.0 KiB
Python

# Copyright (c) OpenMMLab. All rights reserved.
from .base_dataset import BaseDataset
from .builder import (DATASETS, PIPELINES, SAMPLERS, build_dataloader,
build_dataset, build_sampler)
from .cifar import CIFAR10, CIFAR100
from .cub import CUB
from .custom import CustomDataset
from .dataset_wrappers import (ClassBalancedDataset, ConcatDataset,
KFoldDataset, RepeatDataset)
from .imagenet import ImageNet, ImageNet21k
from .mnist import MNIST, FashionMNIST
from .multi_label import MultiLabelDataset
from .pipelines import * # noqa: F401,F403
from .samplers import DistributedSampler, RepeatAugSampler
from .voc import VOC
__all__ = [
'BaseDataset', 'ImageNet', 'CIFAR10', 'CIFAR100', 'MNIST', 'FashionMNIST',
'VOC', 'build_dataloader', 'build_dataset', 'DistributedSampler',
'ConcatDataset', 'RepeatDataset', 'ClassBalancedDataset', 'DATASETS',
'PIPELINES', 'ImageNet21k', 'SAMPLERS', 'build_sampler',
'RepeatAugSampler', 'KFoldDataset', 'CUB', 'CustomDataset',
'MultiLabelDataset'
]