(self, batch: BatchedLabeledPathContext, batch_idx: int)
| 71 | return result["train/loss"] |
| 72 | |
| 73 | def validation_step(self, batch: BatchedLabeledPathContext, batch_idx: int) -> Dict: # type: ignore |
| 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") |
nothing calls this directly
no test coverage detected