Views
No views yet
qwen14b-code-trainer-v6-aggressive
has been merged into Qwen/Qwen2.5-Coder-14B-Instruct
and quantized via llama.cpp.a100-large — the GPU sits
idle, we use that flavor only for its 144 GB system RAM during the float16
merge step.| File | Quantization | Size (≈) | Notes |
|---|---|---|---|
Qwen2.5-Coder-14B-Instruct-Q4_K_M.gguf | Q4_K_M | ~9 GB | Recommended default — balanced quality / footprint |
--quants to launch_convert.py; this repo currently ships only Q4_K_M
because that is the architecture-doc target for the Phase 6 hot-swap inference
stack.llama-cli, llama-server, Ollama, LM Studio, or
text-generation-webui.qwen14b-code-trainer-v6-aggressive
card flags as out of scope (no safety tuning, no non-code tasks).| Stage | Repo / artifact |
|---|---|
| Base model | Qwen/Qwen2.5-Coder-14B-Instruct |
| LoRA adapter | cmndcntrlcyber/qwen14b-code-trainer-v6-aggressive |
| Converter | llama.cpp (convert_hf_to_gguf.py + llama-quantize) |
| Conversion runtime | HF Job, a100-large, ~1 h on the merge + quantize path |
1llama-server \
2 -m Qwen2.5-Coder-14B-Instruct-Q4_K_M.gguf \
3 --host 0.0.0.0 --port 8080 \
4 --ctx-size 4096 --n-gpu-layers 9991FROM ./Qwen2.5-Coder-14B-Instruct-Q4_K_M.gguf
2TEMPLATE """{{ if .System }}<|im_start|>system
3{{ .System }}<|im_end|>
4{{ end }}{{ if .Prompt }}<|im_start|>user
5{{ .Prompt }}<|im_end|>
6{{ end }}<|im_start|>assistant
7"""
8PARAMETER stop "<|im_start|>"
9PARAMETER stop "<|im_end|>"
10PARAMETER num_ctx 40961from llama_cpp import Llama
2
3llm = Llama(
4 model_path="Qwen2.5-Coder-14B-Instruct-Q4_K_M.gguf",
5 n_ctx=4096,
6 n_gpu_layers=999,
7)
8print(llm.create_chat_completion(messages=[
9 {"role": "user", "content": "Write a Go function that reverses a UTF-8 string."},
10])["choices"][0]["message"]["content"])python -m src.phase5_deployment.scripts.launch_convert --quants Q5_K_M Q8_0.1set -a && source .env && set +a
2python -m src.phase5_deployment.scripts.launch_convert \
3 --config src/config/v6_config.yaml --waitsrc/phase5_deployment/)a100-large once the job runs.