Replies: 2 comments
-
Got hit by the same issue as well. I ran a qlora finetuning of OpenHermes 2.5 (mistral) using axolotl, converted the adapter file to ggml using
Got the error:
Do I need to change the |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hmm ... this seem to have got resolved by downloading the latest of llama.cpp, compiling and using it. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
" the simultaneous use of LoRAs and GPU acceleration is only supported for f16 models"
Given LORA already forces mmap to be disabled, we have full access on the memory.
Why not during load: dequantize any LORA layer to FP16 -> apply lora -> quantize again
For best quality it would be possible to point to a FP16 model to load the raw layer.
Like a on-the-fly combination, so the GPU kernels will not even know it was a LORA.
Having to merge LORAs kind of defeats the purpose of it, that's just a preprocessed finetune ?:)
Beta Was this translation helpful? Give feedback.
All reactions