Instructions to use mradermacher/hew-qwen3.5-4b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/hew-qwen3.5-4b-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/hew-qwen3.5-4b-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/hew-qwen3.5-4b-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/hew-qwen3.5-4b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/hew-qwen3.5-4b-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/hew-qwen3.5-4b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/hew-qwen3.5-4b-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/hew-qwen3.5-4b-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/hew-qwen3.5-4b-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/hew-qwen3.5-4b-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/hew-qwen3.5-4b-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/hew-qwen3.5-4b-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/hew-qwen3.5-4b-GGUF with Ollama:
ollama run hf.co/mradermacher/hew-qwen3.5-4b-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use mradermacher/hew-qwen3.5-4b-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/hew-qwen3.5-4b-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/hew-qwen3.5-4b-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/hew-qwen3.5-4b-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/hew-qwen3.5-4b-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/hew-qwen3.5-4b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/hew-qwen3.5-4b-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.hew-qwen3.5-4b-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/hew-qwen3.5-4b-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/hew-qwen3.5-4b-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/hew-qwen3.5-4b-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/hew-qwen3.5-4b-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/hew-qwen3.5-4b-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/hew-qwen3.5-4b-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 leia
Browse files- .gitattributes +12 -0
- hew-qwen3.5-4b.IQ4_XS.gguf +3 -0
- hew-qwen3.5-4b.Q2_K.gguf +3 -0
- hew-qwen3.5-4b.Q3_K_L.gguf +3 -0
- hew-qwen3.5-4b.Q3_K_M.gguf +3 -0
- hew-qwen3.5-4b.Q3_K_S.gguf +3 -0
- hew-qwen3.5-4b.Q4_K_M.gguf +3 -0
- hew-qwen3.5-4b.Q4_K_S.gguf +3 -0
- hew-qwen3.5-4b.Q5_K_M.gguf +3 -0
- hew-qwen3.5-4b.Q5_K_S.gguf +3 -0
- hew-qwen3.5-4b.Q6_K.gguf +3 -0
- hew-qwen3.5-4b.Q8_0.gguf +3 -0
- hew-qwen3.5-4b.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 |
+
hew-qwen3.5-4b.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
hew-qwen3.5-4b.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
hew-qwen3.5-4b.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
hew-qwen3.5-4b.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
hew-qwen3.5-4b.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
hew-qwen3.5-4b.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
hew-qwen3.5-4b.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
hew-qwen3.5-4b.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
hew-qwen3.5-4b.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
hew-qwen3.5-4b.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
hew-qwen3.5-4b.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
hew-qwen3.5-4b.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
hew-qwen3.5-4b.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5783d55c76f10ace01d52ede8304683460bce6f457818549b032a22ba314e4ac
|
| 3 |
+
size 2529031392
|
hew-qwen3.5-4b.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:781db8b80b4bbb7680a0e9f73b3bdba270e7125ed476f1bf1a23f4b7a0dc1086
|
| 3 |
+
size 1915471072
|
hew-qwen3.5-4b.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d2ea9bf38a553767a2c69aaae429be2140b621041fa58674c89c6911059e0fe
|
| 3 |
+
size 2421316832
|
hew-qwen3.5-4b.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d51f10ba149b656e466294fede7d0bfaa90360f0eb7a816861d88e979ad24347
|
| 3 |
+
size 2262064352
|
hew-qwen3.5-4b.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0abf6fcc4e875b51e37ec7d801555e7862d1efbe6dee078daca77f33ea3d4c02
|
| 3 |
+
size 2069880032
|
hew-qwen3.5-4b.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9fcec51f0e684d61f75fcad4b8167e281a5e6c83cfc2c2f28968dae2437f95e6
|
| 3 |
+
size 2708804832
|
hew-qwen3.5-4b.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c610dcf791354042f251afa1c2da871960635d3b3efd212d3389278c000c43ec
|
| 3 |
+
size 2563888352
|
hew-qwen3.5-4b.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7bb6b0b59609c93d0655378a1f3f57e125f0ba82ffc4ad0f6bc2e673e7026d15
|
| 3 |
+
size 3074987232
|
hew-qwen3.5-4b.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ce110313797d1c4a83cdc369d38e35cac5aaaf83c667f1bbad8efc2d65510a45
|
| 3 |
+
size 2990036192
|
hew-qwen3.5-4b.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9d3248aac18eaa1b72acb2fcc45e7e929b607b5aeb9784e0f47b7d029347aa7b
|
| 3 |
+
size 3464056032
|
hew-qwen3.5-4b.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:392905bde01ca0fa0eb4943a0e207c60201d1cd5ebefbe2af3586b35354cdb2e
|
| 3 |
+
size 4482403552
|
hew-qwen3.5-4b.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c4fa0d250235d5789adb50c31c9d11b4fd1ff493b4bec005c1b8e1fed4903468
|
| 3 |
+
size 8424393952
|