Instructions to use unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use unsloth/Qwen3-Coder-480B-A35B-Instruct-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 unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL
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 unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./llama-cli -hf unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL
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 unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./build/bin/llama-cli -hf unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL
Use Docker
docker model run hf.co/unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL
- LM Studio
- Jan
- vLLM
How to use unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "unsloth/Qwen3-Coder-480B-A35B-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": "unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL
- SGLang
How to use unsloth/Qwen3-Coder-480B-A35B-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 "unsloth/Qwen3-Coder-480B-A35B-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": "unsloth/Qwen3-Coder-480B-A35B-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 "unsloth/Qwen3-Coder-480B-A35B-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": "unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF with Ollama:
ollama run hf.co/unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL
- Unsloth Desktop
- Pi
How to use unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL
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": "unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF with Docker Model Runner:
docker model run hf.co/unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL
- Lemonade
How to use unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL
Run and chat with the model
lemonade run user.Qwen3-Coder-480B-A35B-Instruct-GGUF-UD-Q4_K_XL
List all available models
lemonade list
- Hermes Agent
How to use unsloth/Qwen3-Coder-480B-A35B-Instruct-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 unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL
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 unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL
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 "unsloth/Qwen3-Coder-480B-A35B-Instruct-GGUF:UD-Q4_K_XL" \ --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"
Upload folder using huggingface_hub
Browse files- .gitattributes +21 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00001-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00002-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00003-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00004-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00005-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00006-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00007-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00008-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00009-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00010-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00011-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00012-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00013-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00014-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00015-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00016-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00017-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00018-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00019-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00020-of-00021.gguf +3 -0
- BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00021-of-00021.gguf +3 -0
.gitattributes
CHANGED
|
@@ -178,3 +178,24 @@ UD-Q8_K_XL/Qwen3-Coder-480B-A35B-Instruct-UD-Q8_K_XL-00010-of-00012.gguf filter=
|
|
| 178 |
UD-Q8_K_XL/Qwen3-Coder-480B-A35B-Instruct-UD-Q8_K_XL-00011-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 179 |
UD-Q8_K_XL/Qwen3-Coder-480B-A35B-Instruct-UD-Q8_K_XL-00012-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 180 |
imatrix_unsloth.dat filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 178 |
UD-Q8_K_XL/Qwen3-Coder-480B-A35B-Instruct-UD-Q8_K_XL-00011-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 179 |
UD-Q8_K_XL/Qwen3-Coder-480B-A35B-Instruct-UD-Q8_K_XL-00012-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 180 |
imatrix_unsloth.dat filter=lfs diff=lfs merge=lfs -text
|
| 181 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00001-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 182 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00002-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 183 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00003-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 184 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00004-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 185 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00005-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 186 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00006-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 187 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00007-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 188 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00008-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 189 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00009-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 190 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00010-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 191 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00011-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 192 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00012-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 193 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00013-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 194 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00014-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 195 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00015-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 196 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00016-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 197 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00017-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 198 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00018-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 199 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00019-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 200 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00020-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 201 |
+
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00021-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00001-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:528ad296571bb984bc0814a63eb6a1d5f900df8e699868ffd6f9f699dcba9190
|
| 3 |
+
size 48492007360
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00002-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1596db4ccba97791b71df1e0896a624b4cd816375d4eb0988a3565efefb9d966
|
| 3 |
+
size 46291899712
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00003-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0cb1ef43fcffb7f359669048bd5e10956a3cdf3e9fa4f4d8cd9f82128acc8995
|
| 3 |
+
size 46619056800
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00004-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1015c54c929193ed9dcb39e9308f484e842e4c88931c5c7eda8e241570efc806
|
| 3 |
+
size 45964742624
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00005-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a7cd8f86ad2104f1ce4836299aeb373a1bcd31820a8909d4413ad8c5492c6910
|
| 3 |
+
size 46291899744
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00006-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:34333172ddc87dc030032135234ab6c9251a3c7ac4878bf68d2bbe1be0bec32d
|
| 3 |
+
size 46291899744
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00007-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:37b9456800facd425d048f30cbe1054a1ac8c320b6910d94985338fe17b7d140
|
| 3 |
+
size 46291899744
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00008-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb56faec452ff14214ed96466b8c5a909b7614351ec5ed126f8a90190cd9970f
|
| 3 |
+
size 46291899744
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00009-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ff48127fe11300480156676a1cc503dbc6a888fb0bcb309e718ba52da4023137
|
| 3 |
+
size 46291899744
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00010-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc58a11306e8ef576750cc09f3bb00a38df32c77c4e60ef45f11b411e31dc82c
|
| 3 |
+
size 46291899744
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00011-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fedf0bc5f0a44e54edf521b388a5159fb8cdcf59ebd8a0a327f25b78d16ceae6
|
| 3 |
+
size 46291899744
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00012-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e87e4045fa7efc84e774491f9e3c0b2ca1c514e75e977b467dcfd21ff9d1c6ab
|
| 3 |
+
size 46291899744
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00013-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5c36154ff29dd09c45044f582900049e7b8facb341667dceadc4a17260788c25
|
| 3 |
+
size 46291899744
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00014-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e5a860980664f277e3770e7e5701e49f57f67f83cd19b3dbf5e9e075ff7c440
|
| 3 |
+
size 46291899744
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00015-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ac7bb076139a4c7fdd1e42a2e9e8acda7311ab78fe9d0f46770a458b59a7137a
|
| 3 |
+
size 46291899744
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00016-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f72512e15fa9bcc50de599705f230897d98dfdd2f4fed97517a7c3a29487cffa
|
| 3 |
+
size 46291899744
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00017-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e284ee876ff1244bf4c55a162d390af4bdd1adfa5de01c987fda7d0ec861bdbc
|
| 3 |
+
size 46291899744
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00018-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:341bb73e6cd193633d6230757d9c9800831247538a8790ce902ba71afd75bb39
|
| 3 |
+
size 46291899744
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00019-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fae02dbdfae53fe0bb0de321b671029b125878fdd69c3fbde252b12862dd0ed2
|
| 3 |
+
size 46291899744
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00020-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e60abd94c675c6f660af4b52e8910cdab2fd48bbeed4c18b3e58a8fa1797e949
|
| 3 |
+
size 46291899744
|
BF16/Qwen3-Coder-480B-A35B-Instruct-BF16-00021-of-00021.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f4381ac91bde09d02509155f9c08cebe863caed2f5229226ea4f4a1382149352
|
| 3 |
+
size 32401099040
|