(self, x)
| 181 | 'head not supported: {}'.format(head)) |
| 182 | |
| 183 | def forward(self, x): |
| 184 | feat = self.encoder(x) |
| 185 | feat = F.normalize(self.head(feat), dim=1) |
| 186 | return feat |
| 187 | |
| 188 | |
| 189 | class SupCEResNet(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected