Harsha901/Qwen3_4B_GRPO_GGUF is a GGUF-format, quantized inference model derived from Qwen/Qwen3-4B-Base, fine-tuned using Unsloth with GRPO (Generalized Reinforcement Preference Optimization) to improve mathematical reasoning performance.| Model | Correct | Total | Accuracy |
|---|---|---|---|
| Qwen/Qwen3-4B-Base | 701 | 1000 | 70.10% |
| Harsha901/Qwen3_4B_GRPO_GGUF | 850 | 1000 | 85.00% |
temperature=0.0) used during evaluation1./main \
2 -m Qwen3-4B-Base.Q8_0.gguf \
3 -p "Solve: If a car travels 180 miles in 3 hours, what is its speed?" \
4 -n 128 \
5 --temp 0.01from llama_cpp import Llama
2
3llm = Llama(
4 model_path="Qwen3-4B-Base.Q8_0.gguf",
5 n_ctx=4096,
6 n_threads=8,
7)
8
9prompt = "Q: A train travels 120 miles in 2 hours. What is its speed?\nA:"
10out = llm(prompt, max_tokens=64, temperature=0.0)
11print(out["choices"][0]["text"])