(self, output_size)
| 29 | |
| 30 | class RandomGenerator(object): |
| 31 | def __init__(self, output_size): |
| 32 | self.output_size = output_size |
| 33 | |
| 34 | def __call__(self, sample): |
| 35 | image, label = sample['image'], sample['label'] |
nothing calls this directly
no outgoing calls
no test coverage detected