Instructions to use mradermacher/Qwen3-4B-harmfull-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Qwen3-4B-harmfull-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Qwen3-4B-harmfull-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Qwen3-4B-harmfull-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/Qwen3-4B-harmfull-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Qwen3-4B-harmfull-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/Qwen3-4B-harmfull-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Qwen3-4B-harmfull-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/Qwen3-4B-harmfull-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Qwen3-4B-harmfull-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/Qwen3-4B-harmfull-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Qwen3-4B-harmfull-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Qwen3-4B-harmfull-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Qwen3-4B-harmfull-GGUF with Ollama:
ollama run hf.co/mradermacher/Qwen3-4B-harmfull-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Qwen3-4B-harmfull-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 mradermacher/Qwen3-4B-harmfull-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 mradermacher/Qwen3-4B-harmfull-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/Qwen3-4B-harmfull-GGUF to start chatting
- Pi
How to use mradermacher/Qwen3-4B-harmfull-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/Qwen3-4B-harmfull-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": "mradermacher/Qwen3-4B-harmfull-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/Qwen3-4B-harmfull-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/Qwen3-4B-harmfull-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/Qwen3-4B-harmfull-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/Qwen3-4B-harmfull-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/Qwen3-4B-harmfull-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/Qwen3-4B-harmfull-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 mradermacher/Qwen3-4B-harmfull-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Qwen3-4B-harmfull-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Qwen3-4B-harmfull-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Qwen3-4B-harmfull-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3-4B-harmfull-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- Qwen3-4B-harmfull.IQ4_XS.gguf +3 -0
- Qwen3-4B-harmfull.Q2_K.gguf +3 -0
- Qwen3-4B-harmfull.Q3_K_L.gguf +3 -0
- Qwen3-4B-harmfull.Q3_K_M.gguf +3 -0
- Qwen3-4B-harmfull.Q3_K_S.gguf +3 -0
- Qwen3-4B-harmfull.Q4_K_M.gguf +3 -0
- Qwen3-4B-harmfull.Q4_K_S.gguf +3 -0
- Qwen3-4B-harmfull.Q5_K_M.gguf +3 -0
- Qwen3-4B-harmfull.Q5_K_S.gguf +3 -0
- Qwen3-4B-harmfull.Q6_K.gguf +3 -0
- Qwen3-4B-harmfull.Q8_0.gguf +3 -0
- Qwen3-4B-harmfull.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 |
+
Qwen3-4B-harmfull.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen3-4B-harmfull.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen3-4B-harmfull.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen3-4B-harmfull.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen3-4B-harmfull.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwen3-4B-harmfull.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Qwen3-4B-harmfull.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Qwen3-4B-harmfull.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Qwen3-4B-harmfull.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Qwen3-4B-harmfull.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Qwen3-4B-harmfull.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Qwen3-4B-harmfull.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwen3-4B-harmfull.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7386952c6eab3b50dc3be4d8c707573c26308fb16eecbe3a40529cdbcab8bc24
|
| 3 |
+
size 2286316320
|
Qwen3-4B-harmfull.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3149a537de60be14f6a0df0156dd7c21368c7fad74221a62b14a649e33b69155
|
| 3 |
+
size 1669499680
|
Qwen3-4B-harmfull.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4373c3c6e350998bfdfa28d1a9410194a6e88c6a07f69eb6b608d5b1ab538006
|
| 3 |
+
size 2239785760
|
Qwen3-4B-harmfull.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:56731df85d4fc4d5bffe1376c4094b8a158cec0f62dfec5cbe883e14c9482e49
|
| 3 |
+
size 2075618080
|
Qwen3-4B-harmfull.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:30455bd4063e65beccac8c3fcd3a66294e1e37cdad447d0dc6694be220d6aaf3
|
| 3 |
+
size 1886997280
|
Qwen3-4B-harmfull.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ed28be96876ff1b03a895327109e409d32005024fdccdc584f120f22ce19df45
|
| 3 |
+
size 2497280800
|
Qwen3-4B-harmfull.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad6b9c60badd6badc2b66f434bf6e892d536508640f89fb7d163db492f1f8a63
|
| 3 |
+
size 2383309600
|
Qwen3-4B-harmfull.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:063b9c8681cf397ba74d5bcc6c7aaccee955e3df3dfe2d224d66049b90244796
|
| 3 |
+
size 2889513760
|
Qwen3-4B-harmfull.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36a9e2894513669079cd08542b7e7a96cde9d22aa4145a9ad6239b38abcfe717
|
| 3 |
+
size 2823711520
|
Qwen3-4B-harmfull.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b186f8e54636a5264a3fecbd0f3495e180e8265963361b06058a685af0b62c7
|
| 3 |
+
size 3306261280
|
Qwen3-4B-harmfull.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1690ba6e92cac9e73fd60ceb62e30fb0e2e27018cdb6cda005d9052f73f0c35d
|
| 3 |
+
size 4280405280
|
Qwen3-4B-harmfull.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3c3b4317d8f51853dc7524d3004df2b8c3872b9fe7353fee1c8470f1f0f5e584
|
| 3 |
+
size 8051285280
|