Transformers
GGUF
English
shining-valiant
shining-valiant-3
valiant
valiant-labs
qwen
qwen-3
qwen-3-1.7b
1.7b
reasoning
code
code-reasoning
science
science-reasoning
physics
biology
chemistry
earth-science
astronomy
machine-learning
artificial-intelligence
compsci
computer-science
information-theory
ML-Ops
math
cuda
deep-learning
agentic
LLM
neuromorphic
self-improvement
complex-systems
cognition
linguistics
philosophy
logic
epistemology
simulation
game-theory
knowledge-management
creativity
problem-solving
architect
engineer
developer
creative
analytical
expert
rationality
conversational
chat
instruct
Instructions to use mradermacher/Qwen3-1.7B-ShiningValiant3-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Qwen3-1.7B-ShiningValiant3-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Qwen3-1.7B-ShiningValiant3-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Qwen3-1.7B-ShiningValiant3-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-1.7B-ShiningValiant3-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Qwen3-1.7B-ShiningValiant3-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-1.7B-ShiningValiant3-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Qwen3-1.7B-ShiningValiant3-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-1.7B-ShiningValiant3-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Qwen3-1.7B-ShiningValiant3-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-1.7B-ShiningValiant3-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Qwen3-1.7B-ShiningValiant3-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Qwen3-1.7B-ShiningValiant3-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Qwen3-1.7B-ShiningValiant3-GGUF with Ollama:
ollama run hf.co/mradermacher/Qwen3-1.7B-ShiningValiant3-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use mradermacher/Qwen3-1.7B-ShiningValiant3-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-1.7B-ShiningValiant3-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-1.7B-ShiningValiant3-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/Qwen3-1.7B-ShiningValiant3-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Qwen3-1.7B-ShiningValiant3-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Qwen3-1.7B-ShiningValiant3-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Qwen3-1.7B-ShiningValiant3-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3-1.7B-ShiningValiant3-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/Qwen3-1.7B-ShiningValiant3-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-1.7B-ShiningValiant3-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-1.7B-ShiningValiant3-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/Qwen3-1.7B-ShiningValiant3-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-1.7B-ShiningValiant3-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-1.7B-ShiningValiant3-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 rich1
Browse files- .gitattributes +12 -0
- Qwen3-1.7B-ShiningValiant3.IQ4_XS.gguf +3 -0
- Qwen3-1.7B-ShiningValiant3.Q2_K.gguf +3 -0
- Qwen3-1.7B-ShiningValiant3.Q3_K_L.gguf +3 -0
- Qwen3-1.7B-ShiningValiant3.Q3_K_M.gguf +3 -0
- Qwen3-1.7B-ShiningValiant3.Q3_K_S.gguf +3 -0
- Qwen3-1.7B-ShiningValiant3.Q4_K_M.gguf +3 -0
- Qwen3-1.7B-ShiningValiant3.Q4_K_S.gguf +3 -0
- Qwen3-1.7B-ShiningValiant3.Q5_K_M.gguf +3 -0
- Qwen3-1.7B-ShiningValiant3.Q5_K_S.gguf +3 -0
- Qwen3-1.7B-ShiningValiant3.Q6_K.gguf +3 -0
- Qwen3-1.7B-ShiningValiant3.Q8_0.gguf +3 -0
- Qwen3-1.7B-ShiningValiant3.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-1.7B-ShiningValiant3.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen3-1.7B-ShiningValiant3.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen3-1.7B-ShiningValiant3.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen3-1.7B-ShiningValiant3.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen3-1.7B-ShiningValiant3.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwen3-1.7B-ShiningValiant3.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Qwen3-1.7B-ShiningValiant3.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Qwen3-1.7B-ShiningValiant3.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Qwen3-1.7B-ShiningValiant3.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Qwen3-1.7B-ShiningValiant3.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Qwen3-1.7B-ShiningValiant3.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Qwen3-1.7B-ShiningValiant3.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwen3-1.7B-ShiningValiant3.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0cc0e85d6a06f83195cfddd871633752f46262e2b9b3f0b2986126e3f312ef66
|
| 3 |
+
size 1016283456
|
Qwen3-1.7B-ShiningValiant3.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4113bff012216da51f09da64f5e74a48f88db32b37158c668cf84ec1b0ab16b
|
| 3 |
+
size 777797952
|
Qwen3-1.7B-ShiningValiant3.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:291c1d10a590fb9551750a220cd645cf8f67d6c5b10c0c5a9921372a402a945e
|
| 3 |
+
size 1003503936
|
Qwen3-1.7B-ShiningValiant3.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e01f57c79d6be9fdaa118edcfd0be3c0735835135459470047294cc13429f879
|
| 3 |
+
size 939540800
|
Qwen3-1.7B-ShiningValiant3.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72ade6ab7fbe078e600c7a36ca8f5a3457f589296d83117b082625c94e2724cd
|
| 3 |
+
size 867254592
|
Qwen3-1.7B-ShiningValiant3.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:82a6a1b5ebe2337a554ab5c79835cbe30d9e4015e035b3157388b2bff7037a96
|
| 3 |
+
size 1107411264
|
Qwen3-1.7B-ShiningValiant3.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1ebde5f01a0bb48e96186d618b96c65a45680f49ab65302efffc6156a277ecbc
|
| 3 |
+
size 1060192576
|
Qwen3-1.7B-ShiningValiant3.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:407f689ac2b662445b8a71e45d351284b3e8e2e86e37b61f202e034d72fcdb86
|
| 3 |
+
size 1257881920
|
Qwen3-1.7B-ShiningValiant3.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf8392098cc5a83d13496fe6be77a398cd8329d2f81f0570dc6c2ff289691558
|
| 3 |
+
size 1230586176
|
Qwen3-1.7B-ShiningValiant3.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:09947cd9c0d5e247f350ab7056890a6fb2ebf6bff9f851b2f4394671996e05ac
|
| 3 |
+
size 1417756992
|
Qwen3-1.7B-ShiningValiant3.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d101d6b69c38d9cbcbc1358be84f343622bdeb7e6225b2072de0c64044cbe0cd
|
| 3 |
+
size 1834428736
|
Qwen3-1.7B-ShiningValiant3.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:843f4b273fd3474d02b572c3c3c4daec65f2f4be81462bab8267421ff793a42a
|
| 3 |
+
size 3447351616
|