(self, mean, std)
| 15 | |
| 16 | class DeNormalize(object): |
| 17 | def __init__(self, mean, std): |
| 18 | self.mean = mean |
| 19 | self.std = std |
| 20 | |
| 21 | def __call__(self, tensor): |
| 22 | for t, m, s in zip(tensor, self.mean, self.std): |
nothing calls this directly
no outgoing calls
no test coverage detected