[docs]classBoundingBoxesNestedTensors(TANestedTensors[BoundingBoxes,BatchBoundingBoxes]):"""Implement BoundingBoxes Nested Tensor for PyTorch."""tensors_type=BoundingBoxesbatch_tensors_type=BatchBoundingBoxestensors:List[BoundingBoxes]
[docs]defto_batch(self)->BatchBoundingBoxes:"""Return the batched tensor and the shapes of the nested tensors."""returnconvert_bboxes_to_batch_bboxes(self.tensors)