| 11 | |
| 12 | @dataclass |
| 13 | class CroppingCfg: |
| 14 | image_shape: tuple[int, int] | int |
| 15 | flow_scale_multiplier: int |
| 16 | patch_size: int |
| 17 | |
| 18 | |
| 19 | def resize_batch(batch: Batch, shape: tuple[int, int]) -> Batch: |
nothing calls this directly
no outgoing calls
no test coverage detected