Views
No views yet
| Property | Value |
|---|---|
| Base Model | Qwen2.5-14B-Instruct |
| Fine-tuning | QLoRA (4-bit NF4), LoRA rank 8, alpha 16, dropout 0.05 |
| Training Data | 7,106 high-quality QA pairs (balanced, deduplicated, task-validated) |
| Task Types | 15 modes: code explanation, debugging, review, generation, complexity analysis, testing, modernization, full implementation, code completion, production scenarios, cross-source synthesis, diagram generation, prose, math, quizzes |
| Data Mix | 40% code, 20% debug, 25% design, 15% docs/Q&A |
| Epochs | 2 |
| Effective Batch Size | 32 (micro-batch 1 × 32 accum) |
| Learning Rate | 1e-4 |
| Warmup | 5% |
| GPU | A100-40GB |
| Training Time | 164 min |
| Language Coverage | Python, Go, Rust, JavaScript, TypeScript, Java, C, C++, SQL |
| Metric | Value |
|---|---|
| Average QA Score | 3.3/5 |
| Hallucination Rate | ~2% |
| Strongest Domains | Algorithms, Databases, Linux, Web APIs |
| Weakest Domains | Interview prep, abstract design principles |
| File | Size | Use |
|---|---|---|
fwen-14b-q4_k_m-v1.gguf | 8 GB | Production serving (Q4_K_M quantization) |
fwen-14b-q8_0-v1.gguf | 14 GB | Benchmark evaluation (Q8_0 quantization) |
1ollama create fwen:14b -f Modelfile
2ollama run fwen:14b./llama-cli -m fwen-14b-q4_k_m-v1.gguf -p "Explain Rust ownership" -n 5121from transformers import AutoModelForCausalLM, AutoTokenizer
2model = AutoModelForCausalLM.from_pretrained("friehub/fwen-14b-v1")@model{fwen-14b-v1,
author = {Friehub},
title = {Fwen-14B: A Fine-Tuned Software Engineering Tutor},
version = {v1},
year = 2026,
url = {https://huggingface.co/friehub/fwen-14b-v1}
}