14 lines
544 B
Python
14 lines
544 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
from .cls_head import ClsHead
|
|
from .conformer_head import ConformerHead
|
|
from .linear_head import LinearClsHead
|
|
from .multi_label_head import MultiLabelClsHead
|
|
from .multi_label_linear_head import MultiLabelLinearClsHead
|
|
from .stacked_head import StackedLinearClsHead
|
|
from .vision_transformer_head import VisionTransformerClsHead
|
|
|
|
__all__ = [
|
|
'ClsHead', 'LinearClsHead', 'StackedLinearClsHead', 'MultiLabelClsHead',
|
|
'MultiLabelLinearClsHead', 'VisionTransformerClsHead', 'ConformerHead'
|
|
]
|