(self, inputs)
| 327 | return output_dict |
| 328 | |
| 329 | def forward(self, inputs): |
| 330 | |
| 331 | if cfg.MODEL.N_SCALES and not self.training: |
| 332 | return self.nscale_forward(inputs, cfg.MODEL.N_SCALES) |
| 333 | |
| 334 | return self.two_scale_forward(inputs) |
| 335 | |
| 336 | |
| 337 | def HRNet(num_classes, criterion): |
nothing calls this directly
no test coverage detected