(self, batch: Any, batch_idx: int, dataloader_idx: int = None)
| 236 | self._start_validation_epoch_time = time.time() |
| 237 | |
| 238 | def validation_step(self, batch: Any, batch_idx: int, dataloader_idx: int = None): |
| 239 | return self._evaluation_step(batch, batch_idx) |
| 240 | |
| 241 | def validation_epoch_end(self, outputs: List[Any]) -> dict: |
| 242 | val_time = time.time() - self._start_validation_epoch_time |
nothing calls this directly
no test coverage detected