|
|
|
@ -220,7 +220,7 @@ class InvertedResidual(nn.Module):
|
|
|
|
|
has_se = se_ratio is not None and se_ratio > 0.
|
|
|
|
|
self.has_residual = (in_chs == out_chs and stride == 1) and not noskip
|
|
|
|
|
self.drop_path_rate = drop_path_rate
|
|
|
|
|
print(act_layer)
|
|
|
|
|
|
|
|
|
|
# Point-wise expansion
|
|
|
|
|
self.conv_pw = create_conv2d(in_chs, mid_chs, exp_kernel_size, padding=pad_type, **conv_kwargs)
|
|
|
|
|
self.bn1 = norm_layer(mid_chs, **norm_kwargs)
|
|
|
|
|