(self, n_holes=2, length=100)
| 61 | length (int): The length (in pixels) of each square patch. |
| 62 | """ |
| 63 | def __init__(self, n_holes=2, length=100): |
| 64 | self.n_holes = n_holes |
| 65 | self.length = length |
| 66 | |
| 67 | def __call__(self, img, target): |
| 68 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected