(self, cfg: T)
| 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( |
nothing calls this directly
no outgoing calls
no test coverage detected