Views
No views yet
Built with NEO — Your Autonomous AI Agent
| Property | Value |
|---|---|
| Base Model | Qwen/Qwen2.5-3B-Instruct |
| Fine-tuning Method | GRPO (Group Relative Policy Optimization) |
| Domain | Tax & Financial Reasoning |
| Architecture | Qwen2 |
| Context Length | 32,768 tokens |
| Format | GGUF |
| File | Quantization | Size | Use Case |
|---|---|---|---|
grpo-tax-qwen-3b-Q4_K_M.gguf | Q4_K_M | ~2.0 GB | Best balance of speed and quality |
grpo-tax-qwen-3b-Q8_0.gguf | Q8_0 | ~3.2 GB | Higher quality, more RAM required |
1# Download the model
2huggingface-cli download daksh-neo/grpo-tax-qwen-3b-gguf grpo-tax-qwen-3b-Q4_K_M.gguf
3
4# Run inference
5./llama-cli -m grpo-tax-qwen-3b-Q4_K_M.gguf \
6 -p "<|im_start|>system\nYou are a tax expert assistant.<|im_end|>\n<|im_start|>user\nWhat is the standard deduction for 2024?<|im_end|>\n<|im_start|>assistant\n" \
7 -n 512 --temp 0.71# Create a Modelfile
2cat > Modelfile << 'EOF'
3FROM ./grpo-tax-qwen-3b-Q4_K_M.gguf
4TEMPLATE """<|im_start|>system
5{{ .System }}<|im_end|>
6<|im_start|>user
7{{ .Prompt }}<|im_end|>
8<|im_start|>assistant
9"""
10SYSTEM "You are a helpful tax and financial assistant."
11EOF
12
13ollama create grpo-tax-qwen-3b -f Modelfile
14ollama run grpo-tax-qwen-3b1from llama_cpp import Llama
2
3llm = Llama.from_pretrained(
4 repo_id="daksh-neo/grpo-tax-qwen-3b-gguf",
5 filename="grpo-tax-qwen-3b-Q4_K_M.gguf",
6 n_ctx=4096,
7)
8
9response = llm.create_chat_completion(
10 messages=[
11 {"role": "system", "content": "You are a helpful tax assistant."},
12 {"role": "user", "content": "Explain what a W-2 form is."}
13 ]
14)
15print(response["choices"][0]["message"]["content"])