(self, *args, **kwargs)
| 83 | print(f"{context}: Restored training weights") |
| 84 | |
| 85 | def on_train_batch_end(self, *args, **kwargs): |
| 86 | if self.use_ema: |
| 87 | self.model_ema(self) |
| 88 | |
| 89 | |
| 90 | def encode(self, x): |
nothing calls this directly
no outgoing calls
no test coverage detected