Instructions to use GPUburnout/GPUburnout-3B-75K-Chat-v2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use GPUburnout/GPUburnout-3B-75K-Chat-v2 with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="GPUburnout/GPUburnout-3B-75K-Chat-v2", filename="GPUburnout-3B-75K-Chat-v2-Q4_K_M.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use GPUburnout/GPUburnout-3B-75K-Chat-v2 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 GPUburnout/GPUburnout-3B-75K-Chat-v2:Q4_K_M # Run inference directly in the terminal: llama cli -hf GPUburnout/GPUburnout-3B-75K-Chat-v2:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf GPUburnout/GPUburnout-3B-75K-Chat-v2:Q4_K_M # Run inference directly in the terminal: llama cli -hf GPUburnout/GPUburnout-3B-75K-Chat-v2: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 GPUburnout/GPUburnout-3B-75K-Chat-v2:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf GPUburnout/GPUburnout-3B-75K-Chat-v2: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 GPUburnout/GPUburnout-3B-75K-Chat-v2:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf GPUburnout/GPUburnout-3B-75K-Chat-v2:Q4_K_M
Use Docker
docker model run hf.co/GPUburnout/GPUburnout-3B-75K-Chat-v2:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use GPUburnout/GPUburnout-3B-75K-Chat-v2 with Ollama:
ollama run hf.co/GPUburnout/GPUburnout-3B-75K-Chat-v2:Q4_K_M
- Unsloth Studio
How to use GPUburnout/GPUburnout-3B-75K-Chat-v2 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 GPUburnout/GPUburnout-3B-75K-Chat-v2 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 GPUburnout/GPUburnout-3B-75K-Chat-v2 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for GPUburnout/GPUburnout-3B-75K-Chat-v2 to start chatting
- Atomic Chat new
- Docker Model Runner
How to use GPUburnout/GPUburnout-3B-75K-Chat-v2 with Docker Model Runner:
docker model run hf.co/GPUburnout/GPUburnout-3B-75K-Chat-v2:Q4_K_M
- Lemonade
How to use GPUburnout/GPUburnout-3B-75K-Chat-v2 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull GPUburnout/GPUburnout-3B-75K-Chat-v2:Q4_K_M
Run and chat with the model
lemonade run user.GPUburnout-3B-75K-Chat-v2-Q4_K_M
List all available models
lemonade list
GPUburnout-3B-75K-Chat-v2
3B parameter Llama-style chat model trained from scratch by Jun Park (GPUburnout).
This is v2 of the 3B-Chat. The original GPUburnout-3B-75K-Chat was trained with a
plain-concat SFT data formatter instead of the proper apply_chat_template flow.
That bug caused loop collapse at inference and made the 3B underperform the 2B on
ARC-Easy by 8 points.
v2 is the same base pretraining (GPUburnout-3B-75K) with the correct chat-template SFT
recipe applied (Run A from the recipe-parity ablation: lr=2e-4 + apply_chat_template).
It wins on 5 of 6 benchmarks vs the 2B chat model.
Full backstory: It Took Me Two Weeks to Read My Own Code
Benchmarks
| Metric | 2B-Chat | 3B-Chat (v1, retired) | 3B-Chat-v2 (this) |
|---|---|---|---|
| TruthfulQA | 42.42 | 42.43 | 43.54 |
| IFEval | 17.03 | 25.18 | 19.78 |
| HellaSwag | 46.20 | 46.60 | 47.79 |
| ARC-Easy | 58.12 | 49.83 | 59.89 |
| ARC-Challenge | 32.76 | 32.34 | 34.13 |
| MMLU | 25.81 | 24.93 | 25.15 |
(The v1 +25.18 IFEval is a format-mismatch artifact. The honest v2 number is -3.36 vs base, consistent with the linear trend across 1B and 2B.)
Files
model.safetensorsand tokenizer files: full-precision HF formatGPUburnout-3B-75K-Chat-v2-f16.gguf: GGUF f16 for llama.cppGPUburnout-3B-75K-Chat-v2-Q4_K_M.gguf: Q4_K_M quantized GGUF (~1.9 GB, recommended for CPU inference)
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
tok = AutoTokenizer.from_pretrained("GPUburnout/GPUburnout-3B-75K-Chat-v2")
model = AutoModelForCausalLM.from_pretrained("GPUburnout/GPUburnout-3B-75K-Chat-v2")
Or via llama.cpp / llama-cpp-python with the Q4_K_M GGUF.
- Downloads last month
- 145