Transformers
GGUF
English
Merge
programming
code generation
code
codeqwen
coding
coder
qwen3
chat
qwen
qwen-coder
reasoning
thinking
r1
cot
deepseek
40k context
general usage
problem solving
brainstorming
solve riddles
imatrix
conversational
Instructions to use mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-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-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-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-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-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-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-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-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-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-Zero-Coder-Reasoning-V2-0.8B-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-Zero-Coder-Reasoning-V2-0.8B-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-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF to start chatting
- Pi
How to use mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-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-Zero-Coder-Reasoning-V2-0.8B-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-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-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-Zero-Coder-Reasoning-V2-0.8B-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-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-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-Zero-Coder-Reasoning-V2-0.8B-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-Zero-Coder-Reasoning-V2-0.8B-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-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Qwen3-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3-Zero-Coder-Reasoning-V2-0.8B-i1-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from kaos
Browse files- .gitattributes +24 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ1_M.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ1_S.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ2_M.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ2_S.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ2_XS.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ2_XXS.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ3_M.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ3_S.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ3_XS.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ3_XXS.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ4_NL.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ4_XS.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q2_K.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q2_K_S.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q3_K_L.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q3_K_M.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q3_K_S.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q4_0.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q4_1.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q4_K_M.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q4_K_S.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q5_K_M.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q5_K_S.gguf +3 -0
- Qwen3-Zero-Coder-Reasoning-V2-0.8B.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-Zero-Coder-Reasoning-V2-0.8B.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-Zero-Coder-Reasoning-V2-0.8B.imatrix.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d917cf4e8cf324d949eeaf2061587327f3384924e08c6d2e1635f0e50dd7de13
|
| 3 |
+
size 267800896
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a0086ae3a8748040d3608d1fb1c3cc75007299b159b070064980d0947ab3d6ee
|
| 3 |
+
size 255783232
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72c02ddff9856f59f6a25cb3cd43a387ba535c842ed055374182f7ec2989746c
|
| 3 |
+
size 341086528
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60214b582e6e8173f9ea22b7ac8c6a49edec64a62d59b20d5127ea0fd2bd4b40
|
| 3 |
+
size 325062976
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fd9f6df376c89f18d0a582c86ceee464acb88a365590e7c5fa9b24a96f76b92c
|
| 3 |
+
size 306606400
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc504dcbcab3aec0633ef1cbbbd90d0ac386341257097598cf470e8a9e416bf5
|
| 3 |
+
size 287830336
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:508164b94cee65056a14fdb03e2218206d1bc4ca0f2818206514342a7840fce1
|
| 3 |
+
size 437468480
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9345a10ae7a0dd46efb4f3d9808bc425b16e6094a4ed5e70da3297ae7b6a67fa
|
| 3 |
+
size 417832256
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:316b48354270c5d66d9bc5681308fb8f5081be7173d81468f57012ff987bc0d4
|
| 3 |
+
size 402496832
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a2d096aa62dfb2d81a0d5a586eab53d6194cda61bb6091848d90995fe412f7a7
|
| 3 |
+
size 362074432
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f39603c180460e831116f40155b2fa4f061aef159621d6cec0c390e33484c9d2
|
| 3 |
+
size 505568576
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f06e0dda119b77e023cf136714ca5108451869823f6d6ada6f5371aae25532fd
|
| 3 |
+
size 484924736
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:86b454caeaaa613d8a3b28208b5bd0a25eae0359d3ce2650aecd28a6dca00305
|
| 3 |
+
size 377576768
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q2_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b0dba216a37920801c26d61f218525d535d4a950989ab60f948499201597299
|
| 3 |
+
size 354426176
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:825b49a255b302b1dba0b162c07bbbd4b82f406b142083b7338c63836499bb82
|
| 3 |
+
size 485956928
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:accf83682e6534143afc146084ea3952a26a8b9ce89003cc66fbaf56bcf8bb77
|
| 3 |
+
size 453975360
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69bc69877e99edfb4abfd3d9c26ff4ea453849f0378b2a7b36e8484510633929
|
| 3 |
+
size 417832256
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fc0d72fc51624ccdb0e30efdbbcdb5953614a2d0d87f23ac931d649ea5f679c9
|
| 3 |
+
size 506551616
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0a424e948b537a0d71ab2df7200529f03216213f6d8a32c5898016b5908f306e
|
| 3 |
+
size 546856256
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c4d3f836e69604dd21b756287154a3d4b5da9954508b239fd74a0cd4ebc65e4d
|
| 3 |
+
size 528276800
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3db4fecc9d1b38038ed91e233e8d938490b320af7433d6b947b815d669495ee3
|
| 3 |
+
size 508058944
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:15a34821164179b2c8d0061ea31159a3c8b01afc43e746c9989690ec0e7ebfad
|
| 3 |
+
size 599842112
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:58c19f120e699dce96326a50b94dfb371313f5c42e54b5c80ca7715b859cae3e
|
| 3 |
+
size 588143936
|
Qwen3-Zero-Coder-Reasoning-V2-0.8B.i1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06fe625df63c8e98eb2836b2f76789b2b115358f02abbe16874535b609b99e08
|
| 3 |
+
size 675880256
|