"tools/dist_test.sh" did not exist on "e968ab0f0a90248e655b5e0d4d997fa1f0293c7d"
__init__.py 774 Bytes
Newer Older
unknown's avatar
unknown committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from .base_dataset import BaseDataset
from .builder import DATASETS, PIPELINES, build_dataloader, build_dataset
from .cifar import CIFAR10, CIFAR100
from .dataset_wrappers import (ClassBalancedDataset, ConcatDataset,
                               RepeatDataset)
from .dummy import DummyImageNet
from .imagenet import ImageNet
from .mnist import MNIST, FashionMNIST
from .multi_label import MultiLabelDataset
from .samplers import DistributedSampler
from .voc import VOC

__all__ = [
    'BaseDataset', 'ImageNet', 'CIFAR10', 'CIFAR100', 'MNIST', 'FashionMNIST',
    'VOC', 'MultiLabelDataset', 'build_dataloader', 'build_dataset', 'Compose',
    'DistributedSampler', 'ConcatDataset', 'RepeatDataset', 'DummyImageNet',
    'ClassBalancedDataset', 'DATASETS', 'PIPELINES'
]