(self, batch: Dict[str, Any], batch_idx: int)
| 513 | return output |
| 514 | |
| 515 | def validation_step(self, batch: Dict[str, Any], batch_idx: int) -> Dict: |
| 516 | return self.training_step(batch, batch_idx) |
| 517 | |
| 518 | def configure_optimizers( # pyright: ignore[reportIncompatibleMethodOverride] |
| 519 | self, num_iterations_per_epoch, num_epochs |
nothing calls this directly
no test coverage detected