(self, inputs)
| 220 | return output_dict |
| 221 | |
| 222 | def forward(self, inputs): |
| 223 | if cfg.MODEL.N_SCALES and not self.training: |
| 224 | if self.fuse_aspp: |
| 225 | return self.nscale_fused_forward(inputs, cfg.MODEL.N_SCALES) |
| 226 | else: |
| 227 | return self.nscale_forward(inputs, cfg.MODEL.N_SCALES) |
| 228 | |
| 229 | return self.two_scale_forward(inputs) |
| 230 | |
| 231 | |
| 232 | class MscaleV3Plus(MscaleBase): |
nothing calls this directly
no test coverage detected