(self, cfg: LossFlowCfg)
| 25 | |
| 26 | class LossFlow(Loss[LossFlowCfg]): |
| 27 | def __init__(self, cfg: LossFlowCfg) -> None: |
| 28 | super().__init__(cfg) |
| 29 | self.mapping = get_mapping(cfg.mapping) |
| 30 | |
| 31 | def compute_unweighted_loss( |
| 32 | self, |
nothing calls this directly
no test coverage detected