12 lines
444 B
Python
Raw Normal View History

2022-04-02 20:01:06 +08:00
# Copyright (c) Alibaba, Inc. and its affiliates.
from .cifar import ClsSourceCifar10, ClsSourceCifar100
from .class_list import ClsSourceImageListByClass
from .cub import ClsSourceCUB
2022-04-02 20:01:06 +08:00
from .image_list import ClsSourceImageList
from .imagenet_tfrecord import ClsSourceImageNetTFRecord
__all__ = [
'ClsSourceCifar10', 'ClsSourceCifar100', 'ClsSourceImageListByClass',
'ClsSourceImageList', 'ClsSourceImageNetTFRecord', 'ClsSourceCUB'
2022-04-02 20:01:06 +08:00
]