(self, img)
| 63 | a.reset_state() |
| 64 | |
| 65 | def get_transform(self, img): |
| 66 | aug_idx = self.rng.choice(len(self.aug_lists), p=self.prob) |
| 67 | return self.aug_lists[aug_idx].get_transform(img) |
| 68 | |
| 69 | |
| 70 | class RandomOrderAug(ImageAugmentor): |
nothing calls this directly
no test coverage detected