We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e035cd commit 047032dCopy full SHA for 047032d
convert-hf-to-gguf.py
@@ -201,7 +201,7 @@ def _get_model_architecture(self) -> gguf.MODEL_ARCH:
201
return gguf.MODEL_ARCH.REFACT
202
if arch == "PersimmonForCausalLM":
203
return gguf.MODEL_ARCH.PERSIMMON
204
- if arch == "StableLMEpochForCausalLM":
+ if arch in ("StableLMEpochForCausalLM", "LlavaStableLMEpochForCausalLM"):
205
return gguf.MODEL_ARCH.STABLELM
206
207
raise NotImplementedError(f'Architecture "{arch}" not supported!')
0 commit comments