Transformers
GGUF
English
Merge
mergekit
lazymergekit
chemistry
biology
code
qwen3
zeroxclem
ValiantPolaris
4B
imatrix
conversational
Instructions to use mradermacher/Qwen3-4B-Valiant-Polaris-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Qwen3-4B-Valiant-Polaris-i1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Qwen3-4B-Valiant-Polaris-i1-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Qwen3-4B-Valiant-Polaris-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-Valiant-Polaris-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Qwen3-4B-Valiant-Polaris-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-Valiant-Polaris-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Qwen3-4B-Valiant-Polaris-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-Valiant-Polaris-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Qwen3-4B-Valiant-Polaris-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-Valiant-Polaris-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Qwen3-4B-Valiant-Polaris-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Qwen3-4B-Valiant-Polaris-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Qwen3-4B-Valiant-Polaris-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/Qwen3-4B-Valiant-Polaris-i1-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use mradermacher/Qwen3-4B-Valiant-Polaris-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-Valiant-Polaris-i1-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/Qwen3-4B-Valiant-Polaris-i1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/Qwen3-4B-Valiant-Polaris-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Qwen3-4B-Valiant-Polaris-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Qwen3-4B-Valiant-Polaris-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Qwen3-4B-Valiant-Polaris-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3-4B-Valiant-Polaris-i1-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/Qwen3-4B-Valiant-Polaris-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-Valiant-Polaris-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-Valiant-Polaris-i1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/Qwen3-4B-Valiant-Polaris-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-Valiant-Polaris-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-Valiant-Polaris-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"
uploaded from kaos
Browse files- .gitattributes +24 -0
- Qwen3-4B-Valiant-Polaris.i1-IQ1_M.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-IQ1_S.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-IQ2_M.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-IQ2_S.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-IQ2_XS.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-IQ2_XXS.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-IQ3_M.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-IQ3_S.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-IQ3_XS.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-IQ3_XXS.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-IQ4_NL.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-IQ4_XS.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-Q2_K.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-Q2_K_S.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-Q3_K_L.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-Q3_K_M.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-Q3_K_S.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-Q4_0.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-Q4_1.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-Q4_K_M.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-Q4_K_S.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-Q5_K_M.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-Q5_K_S.gguf +3 -0
- Qwen3-4B-Valiant-Polaris.i1-Q6_K.gguf +3 -0
.gitattributes
CHANGED
|
@@ -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-Valiant-Polaris.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-Valiant-Polaris.imatrix.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen3-4B-Valiant-Polaris.i1-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen3-4B-Valiant-Polaris.i1-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen3-4B-Valiant-Polaris.i1-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen3-4B-Valiant-Polaris.i1-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwen3-4B-Valiant-Polaris.i1-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Qwen3-4B-Valiant-Polaris.i1-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Qwen3-4B-Valiant-Polaris.i1-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Qwen3-4B-Valiant-Polaris.i1-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Qwen3-4B-Valiant-Polaris.i1-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Qwen3-4B-Valiant-Polaris.i1-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Qwen3-4B-Valiant-Polaris.i1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Qwen3-4B-Valiant-Polaris.i1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Qwen3-4B-Valiant-Polaris.i1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Qwen3-4B-Valiant-Polaris.i1-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Qwen3-4B-Valiant-Polaris.i1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Qwen3-4B-Valiant-Polaris.i1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
Qwen3-4B-Valiant-Polaris.i1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
Qwen3-4B-Valiant-Polaris.i1-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
Qwen3-4B-Valiant-Polaris.i1-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
Qwen3-4B-Valiant-Polaris.i1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
Qwen3-4B-Valiant-Polaris.i1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
Qwen3-4B-Valiant-Polaris.i1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
Qwen3-4B-Valiant-Polaris.i1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
Qwen3-4B-Valiant-Polaris.i1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwen3-4B-Valiant-Polaris.i1-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fa9655dd4624da9447376331533bca543bf79048f60b31de2875f16b24d3b5b6
|
| 3 |
+
size 1126543456
|
Qwen3-4B-Valiant-Polaris.i1-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:05ff5691cf9400399b5326c9d3c16e242b580278658042f8d0d757ae0098be65
|
| 3 |
+
size 1054781536
|
Qwen3-4B-Valiant-Polaris.i1-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b9493a43dd28a7b65e54cdbbe02eb821a248d978cb06ef01804f875f274fd78
|
| 3 |
+
size 1512509536
|
Qwen3-4B-Valiant-Polaris.i1-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3815b9bb69ee20e86a6b68942b2a219338ae94f8390aa3f821d4b9c5aaf467d
|
| 3 |
+
size 1416826976
|
Qwen3-4B-Valiant-Polaris.i1-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2426b543311dc02d6f7f8eccc96fae2b9150f492a85a97864dec5d365c5d855c
|
| 3 |
+
size 1353625696
|
Qwen3-4B-Valiant-Polaris.i1-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f97bb8d9d85029e2bb72f4dfb6569aff2e42b81e0b8f906cac10ae48c77609c4
|
| 3 |
+
size 1246146656
|
Qwen3-4B-Valiant-Polaris.i1-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0bde3b912170d12d4f2adb558c30869b81ab81bab46af83b96abf70c3aaa5eb7
|
| 3 |
+
size 1962331104
|
Qwen3-4B-Valiant-Polaris.i1-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ff6ba1fc2ff09423cb824f4d1d58eb78ac9c81ac399fea2746a5b2150708a91
|
| 3 |
+
size 1898965984
|
Qwen3-4B-Valiant-Polaris.i1-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:342b8629f43fa0de02c8e016c4135cafcb793bc33b04fdf0e464bfdce90bb627
|
| 3 |
+
size 1813810144
|
Qwen3-4B-Valiant-Polaris.i1-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:818bf5a3f05fad819240de06443d3f4ed226f8d48cd453ebccb9889ed556af17
|
| 3 |
+
size 1669714016
|
Qwen3-4B-Valiant-Polaris.i1-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f4b37017b1bff46a8e02976e905302fe1027083b47217ae1ccf5b9aa964fc93
|
| 3 |
+
size 2380778464
|
Qwen3-4B-Valiant-Polaris.i1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:695e403572b6c8bee124b53a7133fbe17c8437be40772f6ae5d7bf0c13eff58d
|
| 3 |
+
size 2270186464
|
Qwen3-4B-Valiant-Polaris.i1-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7fb961e6d4a062033ddb6e413a3801a4ec406f5035eca6dfaea7477af43d73b
|
| 3 |
+
size 1668934624
|
Qwen3-4B-Valiant-Polaris.i1-Q2_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da43d9b59879f26a106e4132a021091f8fa353bf0752e24e21d61141350b9013
|
| 3 |
+
size 1562889184
|
Qwen3-4B-Valiant-Polaris.i1-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f894d2822d7aa98eed1ef5fa51dfbc2522a2e41524f9035e59d65eaefd3df921
|
| 3 |
+
size 2239220704
|
Qwen3-4B-Valiant-Polaris.i1-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db0860417f3b22d1dbf22c3754a3e482e2de20f8ac5afedac81b6de80a09af52
|
| 3 |
+
size 2075053024
|
Qwen3-4B-Valiant-Polaris.i1-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dcf5e7226be6537276434db827c404d4eff9b3c4e05012661485d9831843d6e3
|
| 3 |
+
size 1886432224
|
Qwen3-4B-Valiant-Polaris.i1-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:04278eb536610677b7b6a14d16576e31756bf353f0b915e7a150245b43ccf3c8
|
| 3 |
+
size 2375207904
|
Qwen3-4B-Valiant-Polaris.i1-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef83bbac0b12603dbead1768ac9c174a01de9e256c661e8fd311336dfb7589f8
|
| 3 |
+
size 2596064224
|
Qwen3-4B-Valiant-Polaris.i1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d9f2330aa59243e07a6a42d44a4ceba78cac07a73129a9d2f4fe670f78dfbdee
|
| 3 |
+
size 2496715744
|
Qwen3-4B-Valiant-Polaris.i1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ea58dfa94a99d4b4c96df68d57bae23f4862171745567b932931917046c05a5
|
| 3 |
+
size 2382744544
|
Qwen3-4B-Valiant-Polaris.i1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:71402cf693956c5c3a8c99dfd5ed03905bfe9bcecd1e1e368d51ff4bb25a5489
|
| 3 |
+
size 2888948704
|
Qwen3-4B-Valiant-Polaris.i1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3c26985958bb8ef43a0974e34fd03fa3de7324c06982ac57750c597fee21a584
|
| 3 |
+
size 2823146464
|
Qwen3-4B-Valiant-Polaris.i1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e523232ac221502f3ae6f9b637d8907dad0378472b3d6470a251c1c3bc14633b
|
| 3 |
+
size 3305696224
|