(self, cfg: T)
| 26 | |
| 27 | class FlowPredictor(nn.Module, ABC, Generic[T]): |
| 28 | def __init__(self, cfg: T) -> None: |
| 29 | super().__init__() |
| 30 | self.cfg = cfg |
| 31 | |
| 32 | @abstractmethod |
| 33 | def forward( |
nothing calls this directly
no outgoing calls
no test coverage detected