(self, outputs: EPOCH_OUTPUT)
| 88 | self.log_dict(log, on_step=False, on_epoch=True) |
| 89 | |
| 90 | def training_epoch_end(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") |
nothing calls this directly
no test coverage detected