(self, transforms: list[Callable[[Any, Any], tuple[Any, Any]]])
| 35 | _children_names: list[str] = ["sample_transforms"] |
| 36 | |
| 37 | def __init__(self, transforms: list[Callable[[Any, Any], tuple[Any, Any]]]) -> None: |
| 38 | self.sample_transforms = transforms |
| 39 | |
| 40 | def __call__(self, x: Any, target: Any) -> tuple[Any, Any]: |
| 41 | for t in self.sample_transforms: |
nothing calls this directly
no outgoing calls
no test coverage detected