(self, mean, std)
| 65 | |
| 66 | class GroupNormalize(object): |
| 67 | def __init__(self, mean, std): |
| 68 | self.mean = mean |
| 69 | self.std = std |
| 70 | |
| 71 | def __call__(self, tensor): |
| 72 | rep_mean = self.mean * (tensor.size()[0] // len(self.mean)) |
nothing calls this directly
no outgoing calls
no test coverage detected