(self, n, m)
| 163 | |
| 164 | class RandAugment: |
| 165 | def __init__(self, n, m): |
| 166 | self.n = n |
| 167 | self.m = m # [0, 30] in fixmatch, deprecated. |
| 168 | self.augment_list = augment_list() |
| 169 | |
| 170 | |
| 171 | def __call__(self, img): |
nothing calls this directly
no test coverage detected