You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
599 B
13 lines
599 B
from .conv_bn_act import ConvBnAct
|
|
from .mixed_conv2d import MixedConv2d
|
|
from .cond_conv2d import CondConv2d, get_condconv_initializer
|
|
from .select_conv2d import select_conv2d
|
|
from .selective_kernel import SelectiveKernelConv
|
|
from .eca import EcaModule, CecaModule
|
|
from .activations import *
|
|
from .adaptive_avgmax_pool import \
|
|
adaptive_avgmax_pool2d, select_adaptive_pool2d, AdaptiveAvgMaxPool2d, SelectAdaptivePool2d
|
|
from .drop import DropBlock2d, DropPath
|
|
from .test_time_pool import TestTimePoolHead, apply_test_time_pool
|
|
from .split_batchnorm import SplitBatchNorm2d, convert_splitbn_model
|