Instructions to use mradermacher/qwen3-4b-unslop-good-lora-v1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/qwen3-4b-unslop-good-lora-v1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/qwen3-4b-unslop-good-lora-v1-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/qwen3-4b-unslop-good-lora-v1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/qwen3-4b-unslop-good-lora-v1-GGUF", filename="qwen3-4b-unslop-good-lora-v1.IQ4_XS.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 mradermacher/qwen3-4b-unslop-good-lora-v1-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-unslop-good-lora-v1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/qwen3-4b-unslop-good-lora-v1-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-unslop-good-lora-v1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/qwen3-4b-unslop-good-lora-v1-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-unslop-good-lora-v1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/qwen3-4b-unslop-good-lora-v1-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-unslop-good-lora-v1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/qwen3-4b-unslop-good-lora-v1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/qwen3-4b-unslop-good-lora-v1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/qwen3-4b-unslop-good-lora-v1-GGUF with Ollama:
ollama run hf.co/mradermacher/qwen3-4b-unslop-good-lora-v1-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/qwen3-4b-unslop-good-lora-v1-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-unslop-good-lora-v1-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-unslop-good-lora-v1-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-unslop-good-lora-v1-GGUF to start chatting
- Pi
How to use mradermacher/qwen3-4b-unslop-good-lora-v1-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-unslop-good-lora-v1-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-unslop-good-lora-v1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/qwen3-4b-unslop-good-lora-v1-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-unslop-good-lora-v1-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-unslop-good-lora-v1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/qwen3-4b-unslop-good-lora-v1-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-unslop-good-lora-v1-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-unslop-good-lora-v1-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-unslop-good-lora-v1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/qwen3-4b-unslop-good-lora-v1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/qwen3-4b-unslop-good-lora-v1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/qwen3-4b-unslop-good-lora-v1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.qwen3-4b-unslop-good-lora-v1-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from rich1
Browse files- .gitattributes +12 -0
- qwen3-4b-unslop-good-lora-v1.IQ4_XS.gguf +3 -0
- qwen3-4b-unslop-good-lora-v1.Q2_K.gguf +3 -0
- qwen3-4b-unslop-good-lora-v1.Q3_K_L.gguf +3 -0
- qwen3-4b-unslop-good-lora-v1.Q3_K_M.gguf +3 -0
- qwen3-4b-unslop-good-lora-v1.Q3_K_S.gguf +3 -0
- qwen3-4b-unslop-good-lora-v1.Q4_K_M.gguf +3 -0
- qwen3-4b-unslop-good-lora-v1.Q4_K_S.gguf +3 -0
- qwen3-4b-unslop-good-lora-v1.Q5_K_M.gguf +3 -0
- qwen3-4b-unslop-good-lora-v1.Q5_K_S.gguf +3 -0
- qwen3-4b-unslop-good-lora-v1.Q6_K.gguf +3 -0
- qwen3-4b-unslop-good-lora-v1.Q8_0.gguf +3 -0
- qwen3-4b-unslop-good-lora-v1.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-unslop-good-lora-v1.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
qwen3-4b-unslop-good-lora-v1.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
qwen3-4b-unslop-good-lora-v1.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
qwen3-4b-unslop-good-lora-v1.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
qwen3-4b-unslop-good-lora-v1.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
qwen3-4b-unslop-good-lora-v1.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
qwen3-4b-unslop-good-lora-v1.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
qwen3-4b-unslop-good-lora-v1.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
qwen3-4b-unslop-good-lora-v1.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
qwen3-4b-unslop-good-lora-v1.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
qwen3-4b-unslop-good-lora-v1.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
qwen3-4b-unslop-good-lora-v1.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
qwen3-4b-unslop-good-lora-v1.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b0cd5ec410d9c3ec05e3bb25ce5b2f474a2736b58354548186416e06552f6751
|
| 3 |
+
size 2286317440
|
qwen3-4b-unslop-good-lora-v1.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4df3f19a6641ff79a0e277dc578fd9a7dac741b7c7f901a028bbf4e6e9cdc80b
|
| 3 |
+
size 1669500800
|
qwen3-4b-unslop-good-lora-v1.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cdf05a2a08f2e2e9fcae4c054f53388a222e18065fc2a9a4b065c75f739e8e90
|
| 3 |
+
size 2239786880
|
qwen3-4b-unslop-good-lora-v1.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6f1dd42ca3164e3665a213f4cdbda28491cb2e33f2d58fa2d4b38906475601b
|
| 3 |
+
size 2075619200
|
qwen3-4b-unslop-good-lora-v1.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48291f2508731515c5ef25be3fdd8070b1373a656d75bb36ad9c1375fe47913a
|
| 3 |
+
size 1886998400
|
qwen3-4b-unslop-good-lora-v1.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:605af60889cf8c9bf77365c6831718d09b5fc45801fa07e900d23023bbe3d7fa
|
| 3 |
+
size 2497281920
|
qwen3-4b-unslop-good-lora-v1.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:73ea96f0f4470c4a9f01881af75fe039b412cf6d83cd45112cfa1866074f794b
|
| 3 |
+
size 2383310720
|
qwen3-4b-unslop-good-lora-v1.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec217544e38c5c9dac0e33209555a5f7afbd4134dcf76c1587c12d58b760cae7
|
| 3 |
+
size 2889514880
|
qwen3-4b-unslop-good-lora-v1.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3cd38140a4f5ee256459e05ec14129102acb9de67988c8630c28850aa83d133
|
| 3 |
+
size 2823712640
|
qwen3-4b-unslop-good-lora-v1.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8d42d022040f8ffc719d05f682abd790892cae3c67a1b9b9c56a72da255447d5
|
| 3 |
+
size 3306262400
|
qwen3-4b-unslop-good-lora-v1.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c41db3098b4e2c1a44846162c1e1f7cdace4c9b3eacc4007a43da246c43f2018
|
| 3 |
+
size 4280406400
|
qwen3-4b-unslop-good-lora-v1.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dbed0f1bd1fda32a21c8e28cac7d690419857688625d2a84cbe0d24742d3e209
|
| 3 |
+
size 8051286400
|