(self, mean, std)
| 58 | |
| 59 | class DeNormalize(object): |
| 60 | def __init__(self, mean, std): |
| 61 | self.mean = mean |
| 62 | self.std = std |
| 63 | |
| 64 | def __call__(self, tensor): |
| 65 | for t, m, s in zip(tensor, self.mean, self.std): |
nothing calls this directly
no outgoing calls
no test coverage detected