(self, model_input, mode=None, integral_dim=None)
| 230 | return out |
| 231 | |
| 232 | def forward(self, model_input, mode=None, integral_dim=None): |
| 233 | |
| 234 | out = {'output': self.forward_mfn(model_input)} |
| 235 | |
| 236 | if self.is_sdf: |
| 237 | return {'model_in': model_input['coords'], |
| 238 | 'model_out': out['output']} |
| 239 | |
| 240 | return {'model_in': model_input, 'model_out': out} |
| 241 | |
| 242 | |
| 243 | class MultiscaleBACON(MFNBase): |
nothing calls this directly
no test coverage detected