| 21 | |
| 22 | |
| 23 | class TrackPredictor(nn.Module, ABC, Generic[T]): |
| 24 | def __init__(self, cfg: T) -> None: |
| 25 | super().__init__() |
| 26 | self.cfg = cfg |
| 27 | |
| 28 | @abstractmethod |
| 29 | def forward( |
| 30 | self, |
| 31 | videos: Float[Tensor, "batch frame 3 height width"], |
| 32 | query_frame: int, |
| 33 | ) -> Tracks: |
| 34 | pass |
nothing calls this directly
no outgoing calls
no test coverage detected