The deployment pipeline
- Merge the LoRA adapter into the base model.
- Convert to deployment format (GGUF, GPTQ, AWQ).
- Quantize for the target hardware.
- Serve via your chosen platform (Ollama, vLLM, TGI).
Why merge?
A merged model has zero PEFT runtime overhead and is byte-identical in shape to the base model. Any serving framework can use it directly — no PEFT dependency at inference time. Merging is the right move for any single-adapter production deployment.