mirror of https://github.com/alibaba/EasyCV.git
9 lines
273 B
Python
9 lines
273 B
Python
|
# Copyright (c) Alibaba, Inc. and its affiliates.
|
||
|
|
||
|
from . import data_sources # pylint: disable=unused-import
|
||
|
from . import pipelines # pylint: disable=unused-import
|
||
|
from .odps import ClsOdpsDataset
|
||
|
from .raw import ClsDataset
|
||
|
|
||
|
__all__ = ['ClsDataset', 'ClsOdpsDataset']
|