(self, x)
| 240 | self.spatial_attention = SpatialAttentionModule() |
| 241 | |
| 242 | def forward(self, x): |
| 243 | out = self.channel_attention(x) * x |
| 244 | out = self.spatial_attention(out) * out |
| 245 | return out |
| 246 | |
| 247 | |
| 248 | class InterFA(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected