(self, mask_size=2)
| 220 | |
| 221 | class cutout_patch: |
| 222 | def __init__(self, mask_size=2): |
| 223 | self.mask_size = mask_size |
| 224 | |
| 225 | def __call__(self, features): |
| 226 | if random.random() < 0.5: |
nothing calls this directly
no outgoing calls
no test coverage detected