__init__.py 334 Bytes
Newer Older
1
# Copyright (c) OpenMMLab. All rights reserved.
zhe chen's avatar
zhe chen committed
2
from .dataset_wrappers import ConcatDataset
3
4
5
from .mapillary import MapillaryDataset  # noqa: F401,F403
from .nyu_depth_v2 import NYUDepthV2Dataset  # noqa: F401,F403
from .pipelines import *  # noqa: F401,F403
6
7
8

__all__ = [
    'MapillaryDataset', 'NYUDepthV2Dataset', 'ConcatDataset'
zhe chen's avatar
zhe chen committed
9
]