(self, batch, batch_idx)
| 172 | return base_metrics |
| 173 | |
| 174 | def test_step(self, batch, batch_idx): |
| 175 | return self._generative_step(batch) |
| 176 | |
| 177 | def test_epoch_end(self, outputs): |
| 178 | return self.validation_epoch_end(outputs, prefix="test") |
nothing calls this directly
no test coverage detected