mmclassification/mmpretrain/models/utils/__init__.py

73 lines
2.4 KiB
Python
Raw Normal View History

# Copyright (c) OpenMMLab. All rights reserved.
from .attention import (BEiTAttention, ChannelMultiheadAttention,
CrossMultiheadAttention, LeAttention,
MultiheadAttention, PromptMultiheadAttention,
ShiftWindowMSA, WindowMSA, WindowMSAV2)
from .batch_augments import CutMix, Mixup, RandomBatchAugment, ResizeMix
from .batch_shuffle import batch_shuffle_ddp, batch_unshuffle_ddp
2020-06-15 16:42:15 +08:00
from .channel_shuffle import channel_shuffle
from .clip_generator_helper import build_clip_model
from .data_preprocessor import (ClsDataPreprocessor, SelfSupDataPreprocessor,
TwoNormDataPreprocessor, VideoDataPreprocessor)
from .ema import CosineEMA
from .embed import (HybridEmbed, PatchEmbed, PatchMerging, resize_pos_embed,
resize_relative_position_bias_table)
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
from .layer_scale import LayerScale
2020-06-15 16:42:15 +08:00
from .make_divisible import make_divisible
from .norm import GRN, LayerNorm2d, build_norm_layer
from .position_encoding import (ConditionalPositionEncoding,
PositionEncodingFourier,
build_2d_sincos_position_embedding)
from .res_layer_extra_norm import ResLayerExtraNorm
2020-06-30 15:50:36 +08:00
from .se_layer import SELayer
from .vector_quantizer import NormEMAVectorQuantizer
2020-06-15 16:42:15 +08:00
__all__ = [
'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',
'LeAttention',
'GRN',
'LayerNorm2d',
'build_norm_layer',
'CrossMultiheadAttention',
'build_2d_sincos_position_embedding',
'PromptMultiheadAttention',
'NormEMAVectorQuantizer',
'build_clip_model',
'batch_shuffle_ddp',
'batch_unshuffle_ddp',
'SelfSupDataPreprocessor',
'TwoNormDataPreprocessor',
'VideoDataPreprocessor',
'CosineEMA',
'ResLayerExtraNorm',
]