(self, batch: Any, batch_idx: int, dataloader_idx: int = None)
| 253 | self._start_test_epoch_time = time.time() |
| 254 | |
| 255 | def test_step(self, batch: Any, batch_idx: int, dataloader_idx: int = None): |
| 256 | return self._evaluation_step(batch, batch_idx) |
| 257 | |
| 258 | def test_epoch_end(self, outputs: List[Any]) -> dict: |
| 259 | test_time = time.time() - self._start_test_epoch_time |
nothing calls this directly
no test coverage detected