(self, **kwargs)
| 216 | self.ffn = SFFN(**ffn_cfg) |
| 217 | |
| 218 | def forward(self, **kwargs): |
| 219 | if self.ca_block is not None: |
| 220 | x = self.ca_block(**kwargs) |
| 221 | kwargs.update({'x': x}) |
| 222 | if self.ffn is not None: |
| 223 | x = self.ffn(**kwargs) |
| 224 | return x |
| 225 | |
| 226 | |
| 227 | @SUBMODULES.register_module() |
nothing calls this directly
no outgoing calls
no test coverage detected