(self, batch: BatchedLabeledPathContext, batch_idx: int)
| 74 | return self._shared_step(batch, "val") |
| 75 | |
| 76 | def test_step(self, batch: BatchedLabeledPathContext, batch_idx: int) -> Dict: # type: ignore |
| 77 | return self._shared_step(batch, "test") |
| 78 | |
| 79 | # ========== ON EPOCH END ========== |
| 80 |
nothing calls this directly
no test coverage detected