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