| 12 | |
| 13 | @dataclass |
| 14 | class Tracks(Manipulable): |
| 15 | xy: Float[Tensor, "batch frame point 2"] |
| 16 | visibility: Bool[Tensor, "batch frame point"] |
| 17 | |
| 18 | # This is the first frame in the track sequence, not the query frame used to |
| 19 | # generate the sequence, which is often different. |
| 20 | start_frame: int |
| 21 | |
| 22 | |
| 23 | class TrackPredictor(nn.Module, ABC, Generic[T]): |