"...vscode:/vscode.git/clone" did not exist on "d3208987791908d3297a52a8b71a15edc1b93904"
__init__.py 334 Bytes
Newer Older
1
2
3
4
# Copyright (c) OpenMMLab. All rights reserved.
from .mapillary import MapillaryDataset  # noqa: F401,F403
from .nyu_depth_v2 import NYUDepthV2Dataset  # noqa: F401,F403
from .pipelines import *  # noqa: F401,F403
5
6
7
8
9
10
from .dataset_wrappers import ConcatDataset


__all__ = [
    'MapillaryDataset', 'NYUDepthV2Dataset', 'ConcatDataset'
]