(self, crop_size,top_ratio, left_ratio)
| 525 | |
| 526 | class CustomCrop: |
| 527 | def __init__(self, crop_size,top_ratio, left_ratio): |
| 528 | self.top_ratio = top_ratio |
| 529 | self.left_ratio = left_ratio |
| 530 | self.crop_size = crop_size |
| 531 | |
| 532 | def __call__(self, tensor): |
| 533 | _, h, w = tensor.shape |
nothing calls this directly
no outgoing calls
no test coverage detected