(self)
| 14 | class BatchBase(Pipelineable, abc.ABC): |
| 15 | @abc.abstractmethod |
| 16 | def as_dict(self) -> Dict: |
| 17 | raise NotImplementedError |
| 18 | |
| 19 | def to(self, device: torch.device, non_blocking: bool = False): |
| 20 | args = {} |
no outgoing calls
no test coverage detected