We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FCA in this code is the same as the python representation of the famous senet module. Why?
class FCA(nn.Module): def __init__(self, channels, reduction_ratio): super(FCA, self).__init__() self.channels = channels self.reduction_ratio = reduction_ratio hidden_channels = channels // reduction_ratio self.avg_pool = nn.AdaptiveAvgPool2d(1) self.fc = nn.Sequential( nn.Linear(channels, hidden_channels, bias=False), nn.ReLU6(inplace=True), nn.Linear(hidden_channels, channels, bias=False), nn.Sigmoid() ) def forward(self, x): b, c, _, _ = x.size() out = self.avg_pool(x).view(b, c) out = self.fc(out).view(b, c, 1, 1) out = x * out.expand_as(x) return out
class SELayer(nn.Module): def __init__(self, channel, reduction=16): super(SELayer, self).__init__() self.avg_pool = nn.AdaptiveAvgPool2d(1) self.fc = nn.Sequential( nn.Linear(channel, channel // reduction, bias=False), nn.ReLU(inplace=True), nn.Linear(channel // reduction, channel, bias=False), nn.Sigmoid() ) def forward(self, x): b, c, _, _ = x.size() y = self.avg_pool(x).view(b, c) y = self.fc(y).view(b, c, 1, 1) return x * y.expand_as(x)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
FCA in this code is the same as the python representation of the famous senet module. Why?
The text was updated successfully, but these errors were encountered: