mirror of
https://github.com/alibaba/EasyCV.git
synced 2025-06-03 14:49:00 +08:00
11 lines
398 B
Python
11 lines
398 B
Python
|
# Copyright (c) Alibaba, Inc. and its affiliates.
|
||
|
from .cifar import ClsSourceCifar10, ClsSourceCifar100
|
||
|
from .class_list import ClsSourceImageListByClass
|
||
|
from .image_list import ClsSourceImageList
|
||
|
from .imagenet_tfrecord import ClsSourceImageNetTFRecord
|
||
|
|
||
|
__all__ = [
|
||
|
'ClsSourceCifar10', 'ClsSourceCifar100', 'ClsSourceImageListByClass',
|
||
|
'ClsSourceImageList', 'ClsSourceImageNetTFRecord'
|
||
|
]
|