(self, *args, **kwargs)
| 113 | return loss |
| 114 | |
| 115 | def on_train_batch_end(self, *args, **kwargs): |
| 116 | update_ema(self.ema, self.model) |
| 117 | |
| 118 | def on_save_checkpoint(self, checkpoint): |
| 119 | super().on_save_checkpoint(checkpoint) |
nothing calls this directly
no test coverage detected