Instructions to use mradermacher/QwQ-0.5B-Distilled-SFT-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/QwQ-0.5B-Distilled-SFT-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/QwQ-0.5B-Distilled-SFT-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/QwQ-0.5B-Distilled-SFT-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 mradermacher/QwQ-0.5B-Distilled-SFT-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/QwQ-0.5B-Distilled-SFT-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 mradermacher/QwQ-0.5B-Distilled-SFT-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/QwQ-0.5B-Distilled-SFT-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 mradermacher/QwQ-0.5B-Distilled-SFT-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/QwQ-0.5B-Distilled-SFT-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 mradermacher/QwQ-0.5B-Distilled-SFT-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/QwQ-0.5B-Distilled-SFT-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/QwQ-0.5B-Distilled-SFT-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/QwQ-0.5B-Distilled-SFT-GGUF with Ollama:
ollama run hf.co/mradermacher/QwQ-0.5B-Distilled-SFT-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use mradermacher/QwQ-0.5B-Distilled-SFT-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/QwQ-0.5B-Distilled-SFT-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "mradermacher/QwQ-0.5B-Distilled-SFT-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/QwQ-0.5B-Distilled-SFT-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/QwQ-0.5B-Distilled-SFT-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/QwQ-0.5B-Distilled-SFT-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/QwQ-0.5B-Distilled-SFT-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.QwQ-0.5B-Distilled-SFT-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/QwQ-0.5B-Distilled-SFT-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 mradermacher/QwQ-0.5B-Distilled-SFT-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 mradermacher/QwQ-0.5B-Distilled-SFT-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/QwQ-0.5B-Distilled-SFT-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/QwQ-0.5B-Distilled-SFT-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 "mradermacher/QwQ-0.5B-Distilled-SFT-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"
uploaded from rich1
Browse files- .gitattributes +12 -0
- QwQ-0.5B-Distilled-SFT.IQ4_XS.gguf +3 -0
- QwQ-0.5B-Distilled-SFT.Q2_K.gguf +3 -0
- QwQ-0.5B-Distilled-SFT.Q3_K_L.gguf +3 -0
- QwQ-0.5B-Distilled-SFT.Q3_K_M.gguf +3 -0
- QwQ-0.5B-Distilled-SFT.Q3_K_S.gguf +3 -0
- QwQ-0.5B-Distilled-SFT.Q4_K_M.gguf +3 -0
- QwQ-0.5B-Distilled-SFT.Q4_K_S.gguf +3 -0
- QwQ-0.5B-Distilled-SFT.Q5_K_M.gguf +3 -0
- QwQ-0.5B-Distilled-SFT.Q5_K_S.gguf +3 -0
- QwQ-0.5B-Distilled-SFT.Q6_K.gguf +3 -0
- QwQ-0.5B-Distilled-SFT.Q8_0.gguf +3 -0
- QwQ-0.5B-Distilled-SFT.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,15 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
QwQ-0.5B-Distilled-SFT.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
QwQ-0.5B-Distilled-SFT.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
QwQ-0.5B-Distilled-SFT.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
QwQ-0.5B-Distilled-SFT.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
QwQ-0.5B-Distilled-SFT.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
QwQ-0.5B-Distilled-SFT.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
QwQ-0.5B-Distilled-SFT.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
QwQ-0.5B-Distilled-SFT.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
QwQ-0.5B-Distilled-SFT.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
QwQ-0.5B-Distilled-SFT.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
QwQ-0.5B-Distilled-SFT.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
QwQ-0.5B-Distilled-SFT.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
QwQ-0.5B-Distilled-SFT.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d75e7ba9e6abfabe8bc088454f2b9eb53e7ffffc1014a4d42d4dedf4d58ed78
|
| 3 |
+
size 351446336
|
QwQ-0.5B-Distilled-SFT.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:26c3633e574ce070b4a2dca5cb65f9e766dd0d7488c0a4da558e8c9b898447d2
|
| 3 |
+
size 338608448
|
QwQ-0.5B-Distilled-SFT.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf4a28697063f896871e10e5c309f2bee3e70abbae4c0fe5f2e9c348a0b8d612
|
| 3 |
+
size 369359168
|
QwQ-0.5B-Distilled-SFT.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70a9b49b733f0057566dd8a38e8efc26ee4ad312053caeff4172b58b48f80983
|
| 3 |
+
size 355467584
|
QwQ-0.5B-Distilled-SFT.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9f686557c1874f36383a11165140640794a2db010b91db61fa3e1e423e034dc1
|
| 3 |
+
size 338264384
|
QwQ-0.5B-Distilled-SFT.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb15861871c636ccaa35dc27acf01d67e141d2808f5cdee5c451f5e647f3778e
|
| 3 |
+
size 397808960
|
QwQ-0.5B-Distilled-SFT.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6ac07f25596134f44808eb24cc82febf05784c3bd6e606f09ce1ef50f457fdb1
|
| 3 |
+
size 385472832
|
QwQ-0.5B-Distilled-SFT.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:078f4ba0185d9432f43b6ea78e7abc90375b10ab81d9795be957c6e79d89c141
|
| 3 |
+
size 420087104
|
QwQ-0.5B-Distilled-SFT.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9123fcc63433d3fc83a37b7a3fffa12c11993d35c6eeabd6feabff6ac9f24054
|
| 3 |
+
size 412711232
|
QwQ-0.5B-Distilled-SFT.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a80e5eac79fbfa87d3564df25b0cbd193459e0854f8deff13757ee2170d69793
|
| 3 |
+
size 505737536
|
QwQ-0.5B-Distilled-SFT.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b1f7f1068c47f00090dc81aa932a62ba0d006f2c34821c939eb558d8164c2ab4
|
| 3 |
+
size 531069248
|
QwQ-0.5B-Distilled-SFT.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:769f8deab92a2a03b019bb9d4c1c8654cbbb5880c2f21d9b7966a521b93df9a2
|
| 3 |
+
size 994157888
|