(self, imgs, targets)
| 645 | |
| 646 | class MotCompose(Compose): |
| 647 | def __call__(self, imgs, targets): |
| 648 | for t in self.transforms: |
| 649 | imgs, targets = t(imgs, targets) |
| 650 | return imgs, targets |
nothing calls this directly
no outgoing calls
no test coverage detected