Chen Jiayu 5b62a28bec
[WIP] [doc] Metric learning tutorial (#36)
* add cub_metric_learning tutorial
2022-04-27 17:50:42 +08:00

12 lines
444 B
Python

# Copyright (c) Alibaba, Inc. and its affiliates.
from .cifar import ClsSourceCifar10, ClsSourceCifar100
from .class_list import ClsSourceImageListByClass
from .cub import ClsSourceCUB
from .image_list import ClsSourceImageList
from .imagenet_tfrecord import ClsSourceImageNetTFRecord
__all__ = [
'ClsSourceCifar10', 'ClsSourceCifar100', 'ClsSourceImageListByClass',
'ClsSourceImageList', 'ClsSourceImageNetTFRecord', 'ClsSourceCUB'
]