Spaces:
Runtime error
Runtime error
File size: 851 Bytes
bb18256 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
import os, sys
from libs import *
from .layers import *
class LightSEModule(nn.Module):
def __init__(self,
in_channels,
reduction = 16,
):
super(LightSEModule, self).__init__()
self.pool = nn.AdaptiveAvgPool1d(1)
self.s_conv = DSConv1d(
in_channels, in_channels//reduction,
kernel_size = 1,
)
self.act_fn = nn.ReLU()
self.e_conv = DSConv1d(
in_channels//reduction, in_channels,
kernel_size = 1,
)
def forward(self,
input,
):
attention_scores = self.pool(input)
attention_scores = self.s_conv(attention_scores)
attention_scores = self.act_fn(attention_scores)
attention_scores = self.e_conv(attention_scores)
return input*torch.sigmoid(attention_scores) |