(self, mask_size=2)
| 245 | |
| 246 | class erase_patch: |
| 247 | def __init__(self, mask_size=2): |
| 248 | self.mask_size = mask_size |
| 249 | |
| 250 | def __call__(self, features): |
| 251 | std, mean = torch.std_mean(features.detach()) |
nothing calls this directly
no outgoing calls
no test coverage detected