Instantiate or load the model, optimizer, and learning rate scheduler. Should prepare all components necessary for training or evaluation.
(self)
| 35 | """ |
| 36 | |
| 37 | def initialize(self): |
| 38 | """ |
| 39 | Instantiate or load the model, optimizer, and learning rate scheduler. |
| 40 | |
| 41 | Should prepare all components necessary for training or evaluation. |
| 42 | """ |
| 43 | raise NotImplementedError |
| 44 | |
| 45 | @property |
| 46 | @abstractmethod |