Instructions to use mradermacher/qwen3-4b-software-arch-distilled_08-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/qwen3-4b-software-arch-distilled_08-i1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/qwen3-4b-software-arch-distilled_08-i1-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/qwen3-4b-software-arch-distilled_08-i1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/qwen3-4b-software-arch-distilled_08-i1-GGUF", filename="qwen3-4b-software-arch-distilled_08.i1-IQ1_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 mradermacher/qwen3-4b-software-arch-distilled_08-i1-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-software-arch-distilled_08-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/qwen3-4b-software-arch-distilled_08-i1-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-software-arch-distilled_08-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/qwen3-4b-software-arch-distilled_08-i1-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-software-arch-distilled_08-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/qwen3-4b-software-arch-distilled_08-i1-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-software-arch-distilled_08-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/qwen3-4b-software-arch-distilled_08-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/qwen3-4b-software-arch-distilled_08-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/qwen3-4b-software-arch-distilled_08-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/qwen3-4b-software-arch-distilled_08-i1-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/qwen3-4b-software-arch-distilled_08-i1-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-software-arch-distilled_08-i1-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-software-arch-distilled_08-i1-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-software-arch-distilled_08-i1-GGUF to start chatting
- Pi
How to use mradermacher/qwen3-4b-software-arch-distilled_08-i1-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-software-arch-distilled_08-i1-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-software-arch-distilled_08-i1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/qwen3-4b-software-arch-distilled_08-i1-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-software-arch-distilled_08-i1-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-software-arch-distilled_08-i1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/qwen3-4b-software-arch-distilled_08-i1-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-software-arch-distilled_08-i1-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-software-arch-distilled_08-i1-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-software-arch-distilled_08-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/qwen3-4b-software-arch-distilled_08-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/qwen3-4b-software-arch-distilled_08-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/qwen3-4b-software-arch-distilled_08-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.qwen3-4b-software-arch-distilled_08-i1-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from back
Browse files- .gitattributes +24 -0
- qwen3-4b-software-arch-distilled_08.i1-IQ1_M.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-IQ1_S.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-IQ2_M.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-IQ2_S.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-IQ2_XS.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-IQ2_XXS.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-IQ3_M.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-IQ3_S.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-IQ3_XS.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-IQ3_XXS.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-IQ4_NL.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-IQ4_XS.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-Q2_K.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-Q2_K_S.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-Q3_K_L.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-Q3_K_M.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-Q3_K_S.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-Q4_0.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-Q4_1.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-Q4_K_M.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-Q4_K_S.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-Q5_K_M.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-Q5_K_S.gguf +3 -0
- qwen3-4b-software-arch-distilled_08.i1-Q6_K.gguf +3 -0
|
@@ -34,3 +34,27 @@ saved_model/**/* 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-software-arch-distilled_08.imatrix.gguf 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-software-arch-distilled_08.imatrix.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
qwen3-4b-software-arch-distilled_08.i1-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
qwen3-4b-software-arch-distilled_08.i1-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
qwen3-4b-software-arch-distilled_08.i1-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
qwen3-4b-software-arch-distilled_08.i1-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
qwen3-4b-software-arch-distilled_08.i1-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
qwen3-4b-software-arch-distilled_08.i1-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
qwen3-4b-software-arch-distilled_08.i1-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
qwen3-4b-software-arch-distilled_08.i1-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
qwen3-4b-software-arch-distilled_08.i1-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
qwen3-4b-software-arch-distilled_08.i1-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
qwen3-4b-software-arch-distilled_08.i1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
qwen3-4b-software-arch-distilled_08.i1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
qwen3-4b-software-arch-distilled_08.i1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
qwen3-4b-software-arch-distilled_08.i1-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
qwen3-4b-software-arch-distilled_08.i1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
qwen3-4b-software-arch-distilled_08.i1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
qwen3-4b-software-arch-distilled_08.i1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
qwen3-4b-software-arch-distilled_08.i1-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
qwen3-4b-software-arch-distilled_08.i1-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
qwen3-4b-software-arch-distilled_08.i1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
qwen3-4b-software-arch-distilled_08.i1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
qwen3-4b-software-arch-distilled_08.i1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
qwen3-4b-software-arch-distilled_08.i1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
qwen3-4b-software-arch-distilled_08.i1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:05b26d327b5942bfdf82e118b8de7cd0af3a3db3717d83d861a04461d869494b
|
| 3 |
+
size 1127018560
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:df75457a2d1c241e1ade0209bbd1ed8b0c933f354ce2970bcf236006b49a9afc
|
| 3 |
+
size 1055256640
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5f24246ac894a13270e8a51e441220fce4c6228dff4def86f2710b69e47597a
|
| 3 |
+
size 1512984640
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a43bc47161c1ee585975c0fa8891902cefce90aaa9907c5ae6106d521735836c
|
| 3 |
+
size 1417302080
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7011d989e5b70223622838f154c32afa12770a065bffe0877d7944e4b1051e3
|
| 3 |
+
size 1354100800
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0a758cfd6270bd14c95cd20a9108eaa2b03e7e08cd6bbdd3529e3c77659b333f
|
| 3 |
+
size 1246621760
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d10ee22d4eb34f83b1b69bfdd6ab7abd26eb21277eacf47fc17eb0e01cdc91ec
|
| 3 |
+
size 1962896960
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:82e267db63b2ff62ce027ebbe7b84df2a8069291b23beb85d2a5fd40765a9253
|
| 3 |
+
size 1899531840
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:009e8101a98af6e488f186207a81eae7409ed1bc3107fef5eed85a7676cf3bd3
|
| 3 |
+
size 1814376000
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e8a42e274ba2fd6d79dbe5fc48d38cab3e05859ff81af942205ec4f3c1f1a1ad
|
| 3 |
+
size 1670189120
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3729aa862194f311e9da8810e3afa8c8f1a3a337dbbd3f2d9749e5421e61bba3
|
| 3 |
+
size 2381344320
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a7ae5f45352b6eb7fa89384f6e5f1c468ca8072beaf1d2598393226b492cc17e
|
| 3 |
+
size 2270752320
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:63b23b2ede32c5f2e1552d0dc3e3268397fba1a8108e1cc15968724608578228
|
| 3 |
+
size 1669500480
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc075634eaa66d1813eccfec8492707421d8040a0133f75f7f0aeb3c3dbdf95f
|
| 3 |
+
size 1563455040
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31b7c3839e30d2787910f085f35009e71183cecb9ec513075373dc2ae6d4418f
|
| 3 |
+
size 2239786560
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8734b54508881504af5a35dabc46ec9c3895bfb621b64bac90af989daf78d60b
|
| 3 |
+
size 2075618880
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1958a3c4ef2602747cc9712c6bf757c69b8d5e56976fa86ce061cc738722ee0c
|
| 3 |
+
size 1886998080
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:becd89578f0c3a6d59ede586d83e7e4a138b6cf4dd3f37232defc91860ffc242
|
| 3 |
+
size 2375773760
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee57abb07adff126fa7392e741fa1728872fd8ea2e2cba7fe94f69ce2f01dbd3
|
| 3 |
+
size 2596630080
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d2a2c3f9f073d6dac8c0fb0072ec892fca9eeac671199b6af12f9a3027a3c4b1
|
| 3 |
+
size 2497281600
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2f8efeab07cd0bf96d1ed3bc7c0f12875c1ac69e55158655f41b3c3de0795eac
|
| 3 |
+
size 2383310400
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:518fdfe8dd393ab59275dd3ec54fceb45d83a0d4570c25e890ce5a4b33609b10
|
| 3 |
+
size 2889514560
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:016fe6f2659179f9d278a841f0755a942f43e995c779d4c30054b16528459845
|
| 3 |
+
size 2823712320
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2d3d18d92974208a57eb3b4cf19fbd91476af5018a9506a13a397d8fe50a9eaf
|
| 3 |
+
size 3306262080
|