2020-07-07 19:32:06 +08:00
|
|
|
from .cls_head import ClsHead
|
|
|
|
from .linear_head import LinearClsHead
|
2021-01-25 18:10:14 +08:00
|
|
|
from .multi_label_head import MultiLabelClsHead
|
|
|
|
from .multi_label_linear_head import MultiLabelLinearClsHead
|
2021-06-27 23:19:36 +08:00
|
|
|
from .stacked_head import StackedLinearClsHead
|
2021-04-16 19:22:41 +08:00
|
|
|
from .vision_transformer_head import VisionTransformerClsHead
|
2020-07-07 19:32:06 +08:00
|
|
|
|
2021-01-25 18:10:14 +08:00
|
|
|
__all__ = [
|
2021-06-27 23:19:36 +08:00
|
|
|
'ClsHead', 'LinearClsHead', 'StackedLinearClsHead', 'MultiLabelClsHead',
|
|
|
|
'MultiLabelLinearClsHead', 'VisionTransformerClsHead'
|
2021-01-25 18:10:14 +08:00
|
|
|
]
|