(self, *args, **kwargs)
| 115 | |
| 116 | @abstractmethod |
| 117 | def decode(self, *args, **kwargs) -> torch.Tensor: |
| 118 | raise NotImplementedError("decode()-method of abstract base class called") |
| 119 | |
| 120 | def instantiate_optimizer_from_config(self, params, lr, cfg): |
| 121 | logpy.info(f"loading >>> {cfg['target']} <<< optimizer from config") |
nothing calls this directly
no outgoing calls
no test coverage detected