(self, tensors)
| 39 | |
| 40 | class PairNormalize(transforms.Normalize): |
| 41 | def forward(self, tensors): |
| 42 | return [F.normalize(tensor, self.mean, self.std, self.inplace) for tensor in tensors] |
| 43 | |
| 44 | |
| 45 | transform_pairimg_train = transforms.Compose([ |
nothing calls this directly
no outgoing calls
no test coverage detected