Push to Hugging Face Hub
The Hub is the model registry. Push your LoRA adapter (small) or your merged model (larger) and document it with a model card.
Convert to GGUF for Ollama / llama.cpp
To run your fine-tuned model in Ollama or llama.cpp, you need GGUF format. Two-step process: merge LoRA into base, then convert HF format → GGUF using llama.cpp's converter.
GGUF quantization choices
| Format | Size (7B) | Quality | Speed |
|---|---|---|---|
| Q2_K | ~2.7 GB | Low | Fastest |
| Q4_K_M | ~4.1 GB | Good | Fast |
| Q5_K_M | ~4.8 GB | Very good | Medium |
| Q6_K | ~5.5 GB | Excellent | Slower |
| Q8_0 | ~7.2 GB | Near-lossless | Slowest |
Q4_K_M is the most-used balance. Q6_K when you have the RAM and want quality.