(self, batch, batch_idx)
| 298 | return metrics |
| 299 | |
| 300 | def test_step(self, batch, batch_idx): |
| 301 | batch_output = self.predict(batch) |
| 302 | return batch_output |
| 303 | |
| 304 | def test_epoch_end(self, outputs): |
| 305 | metrics = self.validation_test_shared_preparation(outputs, self.config.test_score_file) |