GGUF quantized version of Qwen3-14B fine-tuned for STEM Q&A tasks. Ready for use with Ollama, llama.cpp, LM Studio, and other GGUF-compatible tools.
1# Download the GGUF file and Modelfile
2# Then create and run:
3ollama create qwen3-14b-stem -f Modelfile
4ollama run qwen3-14b-stem
FROM ./qwen3-14b-stem-qa-q4_k_m.gguf
TEMPLATE """<|im_start|>system
You are a helpful assistant specialized in STEM subjects.<|im_end|>
<|im_start|>user
{{ .Prompt }}<|im_end|>
<|im_start|>assistant
"""
PARAMETER stop "<|im_end|>"
PARAMETER temperature 0.7
PARAMETER top_p 0.9
PARAMETER num_ctx 4096
PARAMETER num_predict 2048
1./llama-cli -m qwen3-14b-stem-qa-q4_k_m.gguf \
2 -p "<|im_start|>user\nWhat is DNA?<|im_end|>\n<|im_start|>assistant\n" \
3 -n 512
1@misc{hussain2026qwen3-stem,
2 author = {Hussain, Khadim},
3 title = {Qwen3-14B STEM Q&A: Fine-tuned for Science Education},
4 year = {2026},
5 publisher = {Hugging Face},
6 url = {https://huggingface.co/khadim-hussain/qwen3-14b-stem-qa-gguf}
7}