(self, inputs)
| 156 | 'attn_10x': logit_attn} |
| 157 | |
| 158 | def forward(self, inputs): |
| 159 | if cfg.MODEL.N_SCALES and not self.training: |
| 160 | return self.nscale_forward(inputs, cfg.MODEL.N_SCALES) |
| 161 | |
| 162 | return self.two_scale_forward(inputs) |
| 163 | |
| 164 | |
| 165 | class MscaleV3Plus(MscaleBase): |
nothing calls this directly
no test coverage detected