2021-08-17 19:52:42 +08:00
|
|
|
# Copyright (c) OpenMMLab. All rights reserved.
|
2022-09-21 13:27:04 +08:00
|
|
|
from .attention import (BEiTAttention, ChannelMultiheadAttention,
|
|
|
|
MultiheadAttention, ShiftWindowMSA, WindowMSA,
|
|
|
|
WindowMSAV2)
|
2022-06-01 15:29:30 +08:00
|
|
|
from .batch_augments import CutMix, Mixup, RandomBatchAugment, ResizeMix
|
2020-06-15 16:42:15 +08:00
|
|
|
from .channel_shuffle import channel_shuffle
|
2022-06-09 13:48:12 +00:00
|
|
|
from .data_preprocessor import ClsDataPreprocessor
|
2022-04-13 23:06:56 +08:00
|
|
|
from .embed import (HybridEmbed, PatchEmbed, PatchMerging, resize_pos_embed,
|
|
|
|
resize_relative_position_bias_table)
|
2021-07-07 11:55:53 +08:00
|
|
|
from .helpers import is_tracing, to_2tuple, to_3tuple, to_4tuple, to_ntuple
|
2020-06-30 15:50:36 +08:00
|
|
|
from .inverted_residual import InvertedResidual
|
2022-09-20 14:56:45 +08:00
|
|
|
from .layer_scale import LayerScale
|
2020-06-15 16:42:15 +08:00
|
|
|
from .make_divisible import make_divisible
|
2022-09-21 13:27:04 +08:00
|
|
|
from .position_encoding import (ConditionalPositionEncoding,
|
|
|
|
PositionEncodingFourier)
|
2020-06-30 15:50:36 +08:00
|
|
|
from .se_layer import SELayer
|
2020-06-15 16:42:15 +08:00
|
|
|
|
2021-02-25 14:06:58 +08:00
|
|
|
__all__ = [
|
2022-09-21 13:27:04 +08:00
|
|
|
'channel_shuffle',
|
|
|
|
'make_divisible',
|
|
|
|
'InvertedResidual',
|
|
|
|
'SELayer',
|
|
|
|
'to_ntuple',
|
|
|
|
'to_2tuple',
|
|
|
|
'to_3tuple',
|
|
|
|
'to_4tuple',
|
|
|
|
'PatchEmbed',
|
|
|
|
'PatchMerging',
|
|
|
|
'HybridEmbed',
|
|
|
|
'RandomBatchAugment',
|
|
|
|
'ShiftWindowMSA',
|
|
|
|
'is_tracing',
|
|
|
|
'MultiheadAttention',
|
|
|
|
'ConditionalPositionEncoding',
|
|
|
|
'resize_pos_embed',
|
|
|
|
'resize_relative_position_bias_table',
|
|
|
|
'ClsDataPreprocessor',
|
|
|
|
'Mixup',
|
|
|
|
'CutMix',
|
|
|
|
'ResizeMix',
|
|
|
|
'BEiTAttention',
|
|
|
|
'LayerScale',
|
|
|
|
'WindowMSA',
|
|
|
|
'WindowMSAV2',
|
|
|
|
'ChannelMultiheadAttention',
|
|
|
|
'PositionEncodingFourier',
|
2021-02-25 14:06:58 +08:00
|
|
|
]
|