Qwen3-14B RAG (LoRA fine-tuned) โ€” Q4_K_M GGUF

Quantized GGUF build of Qwen/Qwen3-14B with a LoRA adapter merged in, fine-tuned for retrieval-augmented question answering. The model answers only from supplied document context in English, Spanish, or Catalan, using the same RAG-oriented system prompt as MonkeyGrab, a local, fully private RAG stack developed for a Bachelor's thesis (TFG) at the Universitat Politรจcnica de Valรจncia (UPV).

Source code, thesis, and contact

The full MonkeyGrab source code is publicly available at:

https://github.com/iDiagoValeta/localOllamaRAG

The repository includes the complete RAG pipeline, CLI, web interface, training scripts, evaluation workflows, and documentation for the Bachelor's thesis (TFG) at UPV.

This Hugging Face model repo ships inference assets (Qwen3-14B-Q4_K_M.gguf), the Ollama Modelfile, and a reproduction/ folder with frozen copies of the training script, merge utility, and evaluation_comparison.json so methodology and metrics remain auditable alongside the full codebase.

Contact: nadiva1243@gmail.com for questions about training, evaluation, or Ollama usage.

GGUF pipeline (high level): LoRA fine-tuning on the datasets below โ†’ merge with merge_lora.py (see reproduction/) โ†’ GGUF export via the llama.cpp toolchain โ†’ Q4_K_M quantization. The merge script documents expected paths and flags.

Files in this repo

File Description
Qwen3-14B-Q4_K_M.gguf Full weights after LoRA merge, Q4_K_M quantization.
Modelfile Ollama recipe: Qwen3 chat template (thinking disabled), RAG system prompt, sampling parameters.
README.md This model card.
LICENSE MIT โ€” applies to the model card, Modelfile, and files added here by nadiva1243 (not to Alibaba's base terms).
reproduction/train-qwen3.py Snapshot of scripts/training/train-qwen3.py (v10) used for this adapter.
reproduction/merge_lora.py Snapshot of scripts/conversion/merge_lora.py used to merge the LoRA weights into a dense checkpoint before GGUF export.
reproduction/evaluation_comparison.json Frozen evaluation export (base vs. adapted, dev/test splits, per dataset + weighted aggregate).
reproduction/CONVERSION.md Step-by-step notes: merge โ†’ GGUF โ†’ Q4_K_M quantization โ†’ Ollama import.

Base model and method

  • Base: Qwen/Qwen3-14B โ€” 14B-parameter transformer (ChatML-style; end-of-turn token <|im_end|>).
  • Adaptation: PEFT LoRA fine-tuning on five RAG-focused datasets โ†’ LoRA adapter merged into dense weights โ†’ GGUF export โ†’ Q4_K_M quantization.

Thinking mode: Qwen3 supports explicit chain-of-thought via <think>โ€ฆ</think> tokens. In both training and the bundled Modelfile, thinking is disabled (enable_thinking=False / empty <think></think> block in the template) so the full token budget goes to the grounded answer rather than internal reasoning traces.

LoRA configuration

Setting Value
r 32
lora_alpha 64
lora_dropout 0.05
target_modules q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj
bias none

Training (train-qwen3.py, v10)

  • Seed: 42 (propagates to torch / NumPy / CUDA via set_seed).
  • Task format: ChatML <|im_start|>user โ€ฆ <|im_end|> with the instruction and <context>โ€ฆ</context> on the user turn; loss computed only on the assistant completion (prompt labels masked with โ€“100).
  • Data โ€” balanced 5-way interleaving (3,200 train samples per source, 16,000 total):
  • Sequence limits: max_length 4,096 tokens; context truncated to 2,048 tokens; generation up to 2,048 new tokens.
  • Optimizer / schedule: AdamW 8-bit, lr 5e-5, cosine decay with warmup_ratio 0.05, weight_decay 0.01, max_grad_norm 1.0.
  • Batching: per_device_train_batch_size 1, gradient_accumulation_steps 16 โ†’ effective batch 16; bf16 + TF32; gradient checkpointing enabled.
  • Epochs: 3; checkpoints saved every 300 steps (keep last 3); eval every 150 steps; load_best_model_at_end on eval_loss; early stopping with patience 5 evaluations for the training run that produced this checkpoint (tables below).
  • Follow-up: After that run, further experiments suggested tighter early stopping; reproduction/train-qwen3.py now uses patience 3 as the default for new runs. The metrics in this card are unchanged and still refer to the patience-5 run.

Evaluation protocol

  • Frozen dev/test splits: identical for the base (Qwen/Qwen3-14B) and the adapted (LoRA merged) model โ€” no data leakage.
  • Dev: 320 samples ร— 5 sources = 1,600 examples (aligned with evaluate_baselines.py for cross-experiment comparability).
  • Test: full held-out splits โ€” 8,490 examples total across all five sources.
  • Metrics: Token F1, ROUGE-L F1, BERTScore F1 (microsoft/deberta-xlarge-mnli); BERTScore is computed after unloading the generative model to fit in GPU memory.
  • Artifacts: all metric values and sample pairs are in reproduction/evaluation_comparison.json.

Evaluation results

Values are percentage points (0โ€“100 scale). ฮ” (pp) = adapted โˆ’ base; ฮ” rel (%) = relative change vs. base.

Weighted aggregate (all five sources)

Split N Metric Base Adapted ฮ” (pp) ฮ” rel (%)
Dev 1,600 Token F1 43.33 59.95 +16.63 +38.37
Dev 1,600 ROUGE-L F1 36.62 49.81 +13.19 +36.02
Dev 1,600 BERTScore F1 38.94 53.07 +14.13 +36.28
Test 8,490 Token F1 42.99 62.46 +19.47 +45.29
Test 8,490 ROUGE-L F1 36.13 51.88 +15.75 +43.58
Test 8,490 BERTScore F1 38.83 55.61 +16.78 +43.20

Per-dataset dev (320 samples each)

Dataset Token F1 (Base โ†’ Adapted) ROUGE-L F1 (Base โ†’ Adapted) BERTScore F1 (Base โ†’ Adapted)
Neural-Bridge RAG 60.38 โ†’ 79.55 54.65 โ†’ 75.85 56.04 โ†’ 77.60
Dolly QA 48.30 โ†’ 49.88 40.94 โ†’ 44.04 42.41 โ†’ 45.38
Aina-EN 36.53 โ†’ 56.91 30.15 โ†’ 43.48 35.62 โ†’ 51.86
Aina-ES 33.66 โ†’ 55.57 27.09 โ†’ 41.52 28.94 โ†’ 44.22
Aina-CA 37.77 โ†’ 57.86 30.26 โ†’ 44.14 31.70 โ†’ 46.29

Full test-split breakdowns and qualitative sample pairs are in reproduction/evaluation_comparison.json.

Relation to the baseline benchmark

The base dev numbers are aligned with the multi-model benchmark (evaluate_baselines.py, predictions_Qwen3-14B.json), so Qwen3-14B before fine-tuning is directly comparable to the other models in that suite. For post-LoRA performance, use the Adapted columns above.

Hardware compatibility (inference)

Setup Notes
GPU (recommended) ~10โ€“12 GB VRAM is a practical minimum for this Q4_K_M ~14B-class GGUF in Ollama at moderate batching; more VRAM is needed if you raise num_ctx.
Context length The bundled Modelfile sets num_ctx 32768 โ€” reduce if you hit OOM.
CPU Supported by Ollama / llama.cpp runners, but significantly slower than a discrete GPU at this model size.
Training hardware LoRA training used bf16, gradient checkpointing, and an 8-bit optimizer on a CUDA GPU (see reproduction/train-qwen3.py); this is separate from these inference notes.

Ollama

Place Qwen3-14B-Q4_K_M.gguf next to Modelfile (or adjust the FROM path). Then:

ollama create qwen3-rag -f Modelfile
ollama run qwen3-rag

Generation defaults in the bundled Modelfile: num_ctx 32768, temperature 0.15, top_p 0.9, repeat_penalty 1.15.

Limitations

  • Intended for grounded QA over retrieved context; do not rely on it as an unconstrained world-knowledge model without retrieval.
  • Q4_K_M is a speed/size trade-off versus higher bit-widths or FP16.
  • Response quality depends on the quality of the retrieved context and on wrapping it in <context>โ€ฆ</context> tags as in training.

License

  • MIT โ€” The model card, Modelfile, and other metadata added by nadiva1243 are released under the MIT License (see the LICENSE file in this repository).
  • Base weights โ€” The GGUF is a derivative of Qwen/Qwen3-14B. You must also comply with the license and terms of the base model (typically Apache-2.0, see the upstream model card) and with any requirements of the training datasets when redistributing or using the weights.

Citation

@misc{qwen3_rag_gguf_monkeygrab,
  title        = {Qwen3-14B RAG LoRA Fine-tune (Q4_K_M GGUF)},
  author       = {nadiva1243},
  year         = {2026},
  howpublished = {Hugging Face: \url{https://huggingface.co/nadiva1243/qwen3RAG}},
  note         = {Base: Qwen/Qwen3-14B; training: MonkeyGrab train-qwen3.py v10; source: https://github.com/iDiagoValeta/localOllamaRAG}
}
Downloads last month
22
GGUF
Model size
15B params
Architecture
qwen3
Hardware compatibility
Log In to add your hardware

4-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for nadiva1243/qwen3RAG

Finetuned
Qwen/Qwen3-14B
Adapter
(214)
this model