Get the currently loaded model type.
(self)
| 355 | return self.load_primary() |
| 356 | |
| 357 | def get_loaded_model(self) -> Optional[str]: |
| 358 | """Get the currently loaded model type.""" |
| 359 | return "primary" if self._loaded else None |
| 360 | |
| 361 | def is_loaded(self, model_type: str = None) -> bool: |
| 362 | """Check if the model is loaded.""" |
no outgoing calls
no test coverage detected