(self, pics)
| 34 | |
| 35 | class PairToTensor(transforms.ToTensor): |
| 36 | def __call__(self, pics): |
| 37 | return [F.to_tensor(pic) for pic in pics] |
| 38 | |
| 39 | |
| 40 | class PairNormalize(transforms.Normalize): |
nothing calls this directly
no outgoing calls
no test coverage detected