(self)
| 138 | @property |
| 139 | @abstractmethod |
| 140 | def model_arch(self) -> gguf.MODEL_ARCH: |
| 141 | pass |
| 142 | |
| 143 | def find_hparam(self, keys: Sequence[str], optional: bool = False) -> Any: |
| 144 | key = next((k for k in keys if k in self.hparams), None) |
nothing calls this directly
no outgoing calls
no test coverage detected