(self, outputs: EPOCH_OUTPUT)
| 91 | self._shared_epoch_end(outputs, "train") |
| 92 | |
| 93 | def validation_epoch_end(self, outputs: EPOCH_OUTPUT): |
| 94 | self._shared_epoch_end(outputs, "val") |
| 95 | |
| 96 | def test_epoch_end(self, outputs: EPOCH_OUTPUT): |
| 97 | self._shared_epoch_end(outputs, "test") |
nothing calls this directly
no test coverage detected