(self, x)
| 511 | self.l2norm = Normalize(2) |
| 512 | |
| 513 | def forward(self, x): |
| 514 | x = x.view(1, -1, self.patch_num, self.nc) |
| 515 | x = self.model(x) |
| 516 | x_norm = self.l2norm(x) |
| 517 | return x_norm |
| 518 | |
| 519 | |
| 520 | class StridedConvF(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected