(self, x)
| 160 | self.n_views = n_views |
| 161 | |
| 162 | def __call__(self, x): |
| 163 | return [self.base_transform(x) for i in range(self.n_views)] |
| 164 | |
| 165 | |
| 166 | class SupConLoss(torch.nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected