Load the model into memory (GPU/CPU).
(self)
| 71 | |
| 72 | @abstractmethod |
| 73 | def load(self) -> None: |
| 74 | """Load the model into memory (GPU/CPU).""" |
| 75 | ... |
| 76 | |
| 77 | def unload(self) -> None: |
| 78 | """Release memory. Can be overridden if needed.""" |
no outgoing calls
no test coverage detected