(self, cfg: FlowPredictorRaftCfg)
| 23 | |
| 24 | class FlowPredictorRaft(FlowPredictor[FlowPredictorRaftCfg]): |
| 25 | def __init__(self, cfg: FlowPredictorRaftCfg) -> None: |
| 26 | super().__init__(cfg) |
| 27 | self.raft = raft_large(weights=Raft_Large_Weights.DEFAULT) |
| 28 | |
| 29 | def forward( |
| 30 | self, |
nothing calls this directly
no outgoing calls
no test coverage detected