Instructions to use tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF", dtype="auto") - llama-cpp-python
How to use tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF", filename="Qwen2.5-Coder-32B-Instruct-Q2_K.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF:Q2_K
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 tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF:Q2_K
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 tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF:Q2_K
- SGLang
How to use tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF with Ollama:
ollama run hf.co/tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/Qwen2.5-Coder-32B-Instruct-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 tensorblock/Qwen2.5-Coder-32B-Instruct-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 tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF to start chatting
- Pi
How to use tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF:Q2_K
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": "tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF:Q2_K
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 tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF:Q2_K
Run Hermes
hermes
- Docker Model Runner
How to use tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF:Q2_K
- Lemonade
How to use tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF:Q2_K
Run and chat with the model
lemonade run user.Qwen2.5-Coder-32B-Instruct-GGUF-Q2_K
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- Qwen2.5-Coder-32B-Instruct-Q2_K.gguf +3 -0
- Qwen2.5-Coder-32B-Instruct-Q3_K_L.gguf +3 -0
- Qwen2.5-Coder-32B-Instruct-Q3_K_M.gguf +3 -0
- Qwen2.5-Coder-32B-Instruct-Q3_K_S.gguf +3 -0
- Qwen2.5-Coder-32B-Instruct-Q4_0.gguf +3 -0
- Qwen2.5-Coder-32B-Instruct-Q4_K_M.gguf +3 -0
- Qwen2.5-Coder-32B-Instruct-Q4_K_S.gguf +3 -0
- Qwen2.5-Coder-32B-Instruct-Q5_0.gguf +3 -0
- Qwen2.5-Coder-32B-Instruct-Q5_K_M.gguf +3 -0
- Qwen2.5-Coder-32B-Instruct-Q5_K_S.gguf +3 -0
- Qwen2.5-Coder-32B-Instruct-Q6_K.gguf +3 -0
- Qwen2.5-Coder-32B-Instruct-Q8_0.gguf +3 -0
- README.md +90 -0
|
@@ -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 |
+
Qwen2.5-Coder-32B-Instruct-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen2.5-Coder-32B-Instruct-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen2.5-Coder-32B-Instruct-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen2.5-Coder-32B-Instruct-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen2.5-Coder-32B-Instruct-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwen2.5-Coder-32B-Instruct-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Qwen2.5-Coder-32B-Instruct-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Qwen2.5-Coder-32B-Instruct-Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Qwen2.5-Coder-32B-Instruct-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Qwen2.5-Coder-32B-Instruct-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Qwen2.5-Coder-32B-Instruct-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Qwen2.5-Coder-32B-Instruct-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab2789d5ed627f9a33f906946aa6c28341592e0178e4a9d14b7d3092d0431aa8
|
| 3 |
+
size 12313098944
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4326108a94459d9f661062ed3fb84f8c752822f629c0fd66f88dacbed7be9f6b
|
| 3 |
+
size 17247079104
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fa1acd3c51838783f1dffa21111a5d2f7b14f4302e5517cc5772857055332e3c
|
| 3 |
+
size 15935048384
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7213f7146d06725a8f629b12ad876b24714293d1bf55bb3438c6371097850020
|
| 3 |
+
size 14392330944
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:88b7008ba67d47deec961f9e8424d9cc0f375aed9ff01ef597e6d318e3a610a6
|
| 3 |
+
size 18640231104
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5bdb0323450965651f112a434a96183ee157fbba413c212f841b0c2bab51e187
|
| 3 |
+
size 19851336384
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9d5c7975877283dba5cf800e52b664cba2f04cb8869acce86391b11ead28ba03
|
| 3 |
+
size 18784410304
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:495c608b209b7fdbd7c554765299476ec6826e90c4a3a0027f0c2cbddd79d5b2
|
| 3 |
+
size 22638254784
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:701ae4a634eea16f6bdffc167d53fb5b12e43fdd3c64ac26a2d6da2118e490e3
|
| 3 |
+
size 23262157504
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef91450b8868bdbfa73579840f727f8f604b69a101c73c825dda09647f698b95
|
| 3 |
+
size 22638254784
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ba1af9856df8891aaa5dd4a431184dd53a6123ca6545bb625177bb18f1dd0e6
|
| 3 |
+
size 26886154944
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49554eaca5ddc300c887edcbf8c3fe2e0664ad03b7b85be0981afd4264dd15fd
|
| 3 |
+
size 34820885184
|
|
@@ -0,0 +1,90 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
license_link: https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct/blob/main/LICENSE
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
base_model: Qwen/Qwen2.5-Coder-32B-Instruct
|
| 7 |
+
pipeline_tag: text-generation
|
| 8 |
+
library_name: transformers
|
| 9 |
+
tags:
|
| 10 |
+
- code
|
| 11 |
+
- codeqwen
|
| 12 |
+
- chat
|
| 13 |
+
- qwen
|
| 14 |
+
- qwen-coder
|
| 15 |
+
- TensorBlock
|
| 16 |
+
- GGUF
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
<div style="width: auto; margin-left: auto; margin-right: auto">
|
| 20 |
+
<img src="https://i.imgur.com/jC7kdl8.jpeg" alt="TensorBlock" style="width: 100%; min-width: 400px; display: block; margin: auto;">
|
| 21 |
+
</div>
|
| 22 |
+
<div style="display: flex; justify-content: space-between; width: 100%;">
|
| 23 |
+
<div style="display: flex; flex-direction: column; align-items: flex-start;">
|
| 24 |
+
<p style="margin-top: 0.5em; margin-bottom: 0em;">
|
| 25 |
+
Feedback and support: TensorBlock's <a href="https://x.com/tensorblock_aoi">Twitter/X</a>, <a href="https://t.me/TensorBlock">Telegram Group</a> and <a href="https://x.com/tensorblock_aoi">Discord server</a>
|
| 26 |
+
</p>
|
| 27 |
+
</div>
|
| 28 |
+
</div>
|
| 29 |
+
|
| 30 |
+
## Qwen/Qwen2.5-Coder-32B-Instruct - GGUF
|
| 31 |
+
|
| 32 |
+
This repo contains GGUF format model files for [Qwen/Qwen2.5-Coder-32B-Instruct](https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct).
|
| 33 |
+
|
| 34 |
+
The files were quantized using machines provided by [TensorBlock](https://tensorblock.co/), and they are compatible with llama.cpp as of [commit b4011](https://github.com/ggerganov/llama.cpp/commit/a6744e43e80f4be6398fc7733a01642c846dce1d).
|
| 35 |
+
|
| 36 |
+
<div style="text-align: left; margin: 20px 0;">
|
| 37 |
+
<a href="https://tensorblock.co/waitlist/client" style="display: inline-block; padding: 10px 20px; background-color: #007bff; color: white; text-decoration: none; border-radius: 5px; font-weight: bold;">
|
| 38 |
+
Run them on the TensorBlock client using your local machine ↗
|
| 39 |
+
</a>
|
| 40 |
+
</div>
|
| 41 |
+
|
| 42 |
+
## Prompt template
|
| 43 |
+
|
| 44 |
+
```
|
| 45 |
+
<|im_start|>system
|
| 46 |
+
{system_prompt}<|im_end|>
|
| 47 |
+
<|im_start|>user
|
| 48 |
+
{prompt}<|im_end|>
|
| 49 |
+
<|im_start|>assistant
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
## Model file specification
|
| 53 |
+
|
| 54 |
+
| Filename | Quant type | File Size | Description |
|
| 55 |
+
| -------- | ---------- | --------- | ----------- |
|
| 56 |
+
| [Qwen2.5-Coder-32B-Instruct-Q2_K.gguf](https://huggingface.co/tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF/blob/main/Qwen2.5-Coder-32B-Instruct-Q2_K.gguf) | Q2_K | 12.313 GB | smallest, significant quality loss - not recommended for most purposes |
|
| 57 |
+
| [Qwen2.5-Coder-32B-Instruct-Q3_K_S.gguf](https://huggingface.co/tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF/blob/main/Qwen2.5-Coder-32B-Instruct-Q3_K_S.gguf) | Q3_K_S | 14.392 GB | very small, high quality loss |
|
| 58 |
+
| [Qwen2.5-Coder-32B-Instruct-Q3_K_M.gguf](https://huggingface.co/tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF/blob/main/Qwen2.5-Coder-32B-Instruct-Q3_K_M.gguf) | Q3_K_M | 15.935 GB | very small, high quality loss |
|
| 59 |
+
| [Qwen2.5-Coder-32B-Instruct-Q3_K_L.gguf](https://huggingface.co/tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF/blob/main/Qwen2.5-Coder-32B-Instruct-Q3_K_L.gguf) | Q3_K_L | 17.247 GB | small, substantial quality loss |
|
| 60 |
+
| [Qwen2.5-Coder-32B-Instruct-Q4_0.gguf](https://huggingface.co/tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF/blob/main/Qwen2.5-Coder-32B-Instruct-Q4_0.gguf) | Q4_0 | 18.640 GB | legacy; small, very high quality loss - prefer using Q3_K_M |
|
| 61 |
+
| [Qwen2.5-Coder-32B-Instruct-Q4_K_S.gguf](https://huggingface.co/tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF/blob/main/Qwen2.5-Coder-32B-Instruct-Q4_K_S.gguf) | Q4_K_S | 18.784 GB | small, greater quality loss |
|
| 62 |
+
| [Qwen2.5-Coder-32B-Instruct-Q4_K_M.gguf](https://huggingface.co/tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF/blob/main/Qwen2.5-Coder-32B-Instruct-Q4_K_M.gguf) | Q4_K_M | 19.851 GB | medium, balanced quality - recommended |
|
| 63 |
+
| [Qwen2.5-Coder-32B-Instruct-Q5_0.gguf](https://huggingface.co/tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF/blob/main/Qwen2.5-Coder-32B-Instruct-Q5_0.gguf) | Q5_0 | 22.638 GB | legacy; medium, balanced quality - prefer using Q4_K_M |
|
| 64 |
+
| [Qwen2.5-Coder-32B-Instruct-Q5_K_S.gguf](https://huggingface.co/tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF/blob/main/Qwen2.5-Coder-32B-Instruct-Q5_K_S.gguf) | Q5_K_S | 22.638 GB | large, low quality loss - recommended |
|
| 65 |
+
| [Qwen2.5-Coder-32B-Instruct-Q5_K_M.gguf](https://huggingface.co/tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF/blob/main/Qwen2.5-Coder-32B-Instruct-Q5_K_M.gguf) | Q5_K_M | 23.262 GB | large, very low quality loss - recommended |
|
| 66 |
+
| [Qwen2.5-Coder-32B-Instruct-Q6_K.gguf](https://huggingface.co/tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF/blob/main/Qwen2.5-Coder-32B-Instruct-Q6_K.gguf) | Q6_K | 26.886 GB | very large, extremely low quality loss |
|
| 67 |
+
| [Qwen2.5-Coder-32B-Instruct-Q8_0.gguf](https://huggingface.co/tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF/blob/main/Qwen2.5-Coder-32B-Instruct-Q8_0.gguf) | Q8_0 | 34.821 GB | very large, extremely low quality loss - not recommended |
|
| 68 |
+
|
| 69 |
+
|
| 70 |
+
## Downloading instruction
|
| 71 |
+
|
| 72 |
+
### Command line
|
| 73 |
+
|
| 74 |
+
Firstly, install Huggingface Client
|
| 75 |
+
|
| 76 |
+
```shell
|
| 77 |
+
pip install -U "huggingface_hub[cli]"
|
| 78 |
+
```
|
| 79 |
+
|
| 80 |
+
Then, downoad the individual model file the a local directory
|
| 81 |
+
|
| 82 |
+
```shell
|
| 83 |
+
huggingface-cli download tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF --include "Qwen2.5-Coder-32B-Instruct-Q2_K.gguf" --local-dir MY_LOCAL_DIR
|
| 84 |
+
```
|
| 85 |
+
|
| 86 |
+
If you wanna download multiple model files with a pattern (e.g., `*Q4_K*gguf`), you can try:
|
| 87 |
+
|
| 88 |
+
```shell
|
| 89 |
+
huggingface-cli download tensorblock/Qwen2.5-Coder-32B-Instruct-GGUF --local-dir MY_LOCAL_DIR --local-dir-use-symlinks False --include='*Q4_K*gguf'
|
| 90 |
+
```
|