(self, mean, std)
| 111 | |
| 112 | class GroupNormalize(object): |
| 113 | def __init__(self, mean, std): |
| 114 | self.mean = mean |
| 115 | self.std = std |
| 116 | |
| 117 | def __call__(self, tensor): |
| 118 | rep_mean = self.mean * (tensor.size()[0] // len(self.mean)) |
nothing calls this directly
no outgoing calls
no test coverage detected