(self, x)
| 93 | ) |
| 94 | |
| 95 | def forward(self, x): |
| 96 | x = self.conv(x) |
| 97 | atten=self.scale(x) |
| 98 | x=x*atten |
| 99 | return x |
| 100 | class FeatureSelectionModule(nn.Module): |
| 101 | # FaPN paper |
| 102 | def __init__(self, in_chan, out_chan): |
nothing calls this directly
no outgoing calls
no test coverage detected