(self, cfg: LossTrackingCfg)
| 22 | |
| 23 | class LossTracking(Loss[LossTrackingCfg]): |
| 24 | def __init__(self, cfg: LossTrackingCfg) -> None: |
| 25 | super().__init__(cfg) |
| 26 | self.mapping = get_mapping(cfg.mapping) |
| 27 | |
| 28 | def compute_unweighted_loss( |
| 29 | self, |
nothing calls this directly
no test coverage detected