Instructions to use daksh-neo/grpo-tax-qwen-1.5b-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use daksh-neo/grpo-tax-qwen-1.5b-gguf with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M
Use Docker
docker model run hf.co/daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use daksh-neo/grpo-tax-qwen-1.5b-gguf with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "daksh-neo/grpo-tax-qwen-1.5b-gguf" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "daksh-neo/grpo-tax-qwen-1.5b-gguf", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M
- Ollama
How to use daksh-neo/grpo-tax-qwen-1.5b-gguf with Ollama:
ollama run hf.co/daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M
- Unsloth Studio
How to use daksh-neo/grpo-tax-qwen-1.5b-gguf with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for daksh-neo/grpo-tax-qwen-1.5b-gguf to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for daksh-neo/grpo-tax-qwen-1.5b-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for daksh-neo/grpo-tax-qwen-1.5b-gguf to start chatting
- Pi
How to use daksh-neo/grpo-tax-qwen-1.5b-gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use daksh-neo/grpo-tax-qwen-1.5b-gguf with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use daksh-neo/grpo-tax-qwen-1.5b-gguf with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use daksh-neo/grpo-tax-qwen-1.5b-gguf with Docker Model Runner:
docker model run hf.co/daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M
- Lemonade
How to use daksh-neo/grpo-tax-qwen-1.5b-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull daksh-neo/grpo-tax-qwen-1.5b-gguf:Q4_K_M
Run and chat with the model
lemonade run user.grpo-tax-qwen-1.5b-gguf-Q4_K_M
List all available models
lemonade list
grpo-tax-qwen-1.5b-GGUF
Built with NEO โ Your Autonomous AI Agent
GGUF quantized versions of Qwen2.5-1.5B-Instruct fine-tuned with GRPO (Group Relative Policy Optimization) on tax and financial reasoning tasks.
Model Details
| Property | Value |
|---|---|
| Base Model | Qwen/Qwen2.5-1.5B-Instruct |
| Fine-tuning Method | GRPO (Group Relative Policy Optimization) |
| Domain | Tax & Financial Reasoning |
| Architecture | Qwen2 |
| Context Length | 32,768 tokens |
| Format | GGUF |
Available Quantizations
| File | Quantization | Size | Use Case |
|---|---|---|---|
grpo-tax-qwen-1.5b-Q4_K_M.gguf |
Q4_K_M | ~1.0 GB | Best balance of speed and quality |
grpo-tax-qwen-1.5b-Q8_0.gguf |
Q8_0 | ~1.6 GB | Higher quality, more RAM required |
Usage
With llama.cpp
# Download the model
huggingface-cli download daksh-neo/grpo-tax-qwen-1.5b-gguf grpo-tax-qwen-1.5b-Q4_K_M.gguf
# Run inference
./llama-cli -m grpo-tax-qwen-1.5b-Q4_K_M.gguf \
-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" \
-n 512 --temp 0.7
With Ollama
# Create a Modelfile
cat > Modelfile << 'EOF'
FROM ./grpo-tax-qwen-1.5b-Q4_K_M.gguf
TEMPLATE """<|im_start|>system
{{ .System }}<|im_end|>
<|im_start|>user
{{ .Prompt }}<|im_end|>
<|im_start|>assistant
"""
SYSTEM "You are a helpful tax and financial assistant."
EOF
ollama create grpo-tax-qwen-1.5b -f Modelfile
ollama run grpo-tax-qwen-1.5b
With Python (llama-cpp-python)
from llama_cpp import Llama
llm = Llama.from_pretrained(
repo_id="daksh-neo/grpo-tax-qwen-1.5b-gguf",
filename="grpo-tax-qwen-1.5b-Q4_K_M.gguf",
n_ctx=4096,
)
response = llm.create_chat_completion(
messages=[
{"role": "system", "content": "You are a helpful tax assistant."},
{"role": "user", "content": "Explain what a W-2 form is."}
]
)
print(response["choices"][0]["message"]["content"])
Training Details
This model was fine-tuned using GRPO (Group Relative Policy Optimization), a reinforcement learning from human feedback (RLHF) variant that optimizes the model's responses on tax and financial reasoning tasks without requiring a separate reward model. GRPO trains by comparing groups of sampled responses and reinforcing higher-quality answers.
Training focus areas:
- Federal and state tax regulations
- Tax form interpretation (W-2, 1099, Schedule C, etc.)
- Deductions and credits
- Tax planning strategies
- Financial compliance questions
Limitations
- This model is fine-tuned on tax knowledge up to its training cutoff and may not reflect the latest tax law changes.
- Always consult a qualified tax professional for official tax advice.
- The model is not a substitute for professional legal or financial guidance.
Related Models
- daksh-neo/grpo-tax-qwen-3b-gguf โ Larger 3B version with higher accuracy
License
Apache 2.0 โ see Qwen2.5 license for base model terms.
- Downloads last month
- 8
4-bit
8-bit