(self, output_size)
| 215 | """ |
| 216 | |
| 217 | def __init__(self, output_size): |
| 218 | assert isinstance(output_size, (int, tuple)) |
| 219 | self.output_size = output_size |
| 220 | |
| 221 | def __call__(self, sample): |
| 222 | image, landmarks = sample['image'], sample['landmarks'] |
nothing calls this directly
no outgoing calls
no test coverage detected