(self, tensors, mask: Optional[Tensor])
| 286 | |
| 287 | class NestedTensor(object): |
| 288 | def __init__(self, tensors, mask: Optional[Tensor]): |
| 289 | self.tensors = tensors |
| 290 | self.mask = mask |
| 291 | |
| 292 | def to(self, device): |
| 293 | # type: (Device) -> NestedTensor # noqa |
nothing calls this directly
no outgoing calls
no test coverage detected