(self, input, target)
| 25 | self.co_transforms = co_transforms |
| 26 | |
| 27 | def __call__(self, input, target): |
| 28 | for t in self.co_transforms: |
| 29 | input,target = t(input,target) |
| 30 | return input,target |
| 31 | |
| 32 | |
| 33 | class Scale(object): |
nothing calls this directly
no outgoing calls
no test coverage detected