Image-Text-to-Text
Transformers
Safetensors
English
Chinese
qwen3_5
nvfp4
fp4
w4a4
gptq
quantized
compressed-tensors
llm-compressor
vllm
vision-language
thinking
code
coder
conversational
8-bit precision
Instructions to use maci0/Qwopus3.6-27B-Coder-NVFP4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use maci0/Qwopus3.6-27B-Coder-NVFP4 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="maci0/Qwopus3.6-27B-Coder-NVFP4") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("maci0/Qwopus3.6-27B-Coder-NVFP4") model = AutoModelForMultimodalLM.from_pretrained("maci0/Qwopus3.6-27B-Coder-NVFP4", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use maci0/Qwopus3.6-27B-Coder-NVFP4 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "maci0/Qwopus3.6-27B-Coder-NVFP4" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "maci0/Qwopus3.6-27B-Coder-NVFP4", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/maci0/Qwopus3.6-27B-Coder-NVFP4
- SGLang
How to use maci0/Qwopus3.6-27B-Coder-NVFP4 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 "maci0/Qwopus3.6-27B-Coder-NVFP4" \ --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": "maci0/Qwopus3.6-27B-Coder-NVFP4", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'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 "maci0/Qwopus3.6-27B-Coder-NVFP4" \ --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": "maci0/Qwopus3.6-27B-Coder-NVFP4", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use maci0/Qwopus3.6-27B-Coder-NVFP4 with Docker Model Runner:
docker model run hf.co/maci0/Qwopus3.6-27B-Coder-NVFP4
card: DATASHEET design language
Browse files
README.md
CHANGED
|
@@ -23,47 +23,8 @@ tags:
|
|
| 23 |
- coder
|
| 24 |
---
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
<div style="font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #ddd6fe; margin-bottom: 12px;">◆ <a href="https://huggingface.co/spaces/maci0/rogue-quants" style="color: #ddd6fe; text-decoration: none;">Rogue Quants</a> · NVFP4</div>
|
| 29 |
-
<div style="display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;">
|
| 30 |
-
<h1 style="margin: 0; font-size: 25px; font-weight: 800; display: flex; align-items: center; gap: 12px; color: white; border: none;">🪐 Qwopus3.6-27B-Coder · NVFP4</h1>
|
| 31 |
-
<span style="background: #10b981; color: white; font-size: 11px; font-weight: 800; padding: 5px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;">💻 Coder</span>
|
| 32 |
-
</div>
|
| 33 |
-
<p style="margin: 10px 0 0 0; font-size: 14px; color: #ddd6fe; font-weight: 500;">27B coder vision-language · agentic + tool-calling · thinking · GPTQ NVFP4 W4A4</p>
|
| 34 |
-
</div>
|
| 35 |
-
<div style="display: flex; gap: 8px; flex-wrap: wrap; padding: 13px 24px; background: #faf5ff; border-bottom: 1px solid #e9d5ff;">
|
| 36 |
-
<span style="background: #f3e8ff; color: #6b21a8; font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 20px; border: 1px solid #e9d5ff;">⚙️ NVFP4 · W4A4</span>
|
| 37 |
-
<span style="background: #f3e8ff; color: #6b21a8; font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 20px; border: 1px solid #e9d5ff;">💾 ~18 GB</span>
|
| 38 |
-
<span style="background: #f3e8ff; color: #6b21a8; font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 20px; border: 1px solid #e9d5ff;">📉 PPL 6.63</span>
|
| 39 |
-
<span style="background: #f3e8ff; color: #6b21a8; font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 20px; border: 1px solid #e9d5ff;">📐 256K context</span>
|
| 40 |
-
<span style="background: #f3e8ff; color: #6b21a8; font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 20px; border: 1px solid #e9d5ff;">🚀 vLLM · Blackwell</span>
|
| 41 |
-
<span style="background: #ede9fe; color: #5b21b6; font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 20px; border: 1px solid #ddd6fe;">💻 Coder</span>
|
| 42 |
-
<span style="background: #dcfce7; color: #166534; font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 20px; border: 1px solid #bbf7d0;">🛠️ Tool-calling</span>
|
| 43 |
-
</div>
|
| 44 |
-
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; padding: 20px 24px; background: #ffffff;">
|
| 45 |
-
<div style="border: 1px solid #e9d5ff; padding: 14px; border-radius: 10px; background: #faf5ff; text-align: center;">
|
| 46 |
-
<span style="font-size: 11px; font-weight: 800; color: #7c3aed; text-transform: uppercase; display: block; margin-bottom: 6px; letter-spacing: 0.5px;">Size on disk</span>
|
| 47 |
-
<span style="font-size: 24px; font-weight: 900; color: #4c1d95; display: block; line-height: 1;">18 GB</span>
|
| 48 |
-
<span style="font-size: 12px; color: #64748b; font-weight: 600;">vs 55.6 GB bf16 (~33%)</span>
|
| 49 |
-
</div>
|
| 50 |
-
<div style="border: 1px solid #e9d5ff; padding: 14px; border-radius: 10px; background: #faf5ff; text-align: center;">
|
| 51 |
-
<span style="font-size: 11px; font-weight: 800; color: #7c3aed; text-transform: uppercase; display: block; margin-bottom: 6px; letter-spacing: 0.5px;">wikitext-2 PPL</span>
|
| 52 |
-
<span style="font-size: 24px; font-weight: 900; color: #4c1d95; display: block; line-height: 1;">6.63</span>
|
| 53 |
-
<span style="font-size: 12px; color: #64748b; font-weight: 600;">near-lossless vs bf16</span>
|
| 54 |
-
</div>
|
| 55 |
-
<div style="border: 1px solid #e9d5ff; padding: 14px; border-radius: 10px; background: #faf5ff; text-align: center;">
|
| 56 |
-
<span style="font-size: 11px; font-weight: 800; color: #7c3aed; text-transform: uppercase; display: block; margin-bottom: 6px; letter-spacing: 0.5px;">Context</span>
|
| 57 |
-
<span style="font-size: 24px; font-weight: 900; color: #4c1d95; display: block; line-height: 1;">256K</span>
|
| 58 |
-
<span style="font-size: 12px; color: #64748b; font-weight: 600;">262144 tokens</span>
|
| 59 |
-
</div>
|
| 60 |
-
<div style="border: 1px solid #e9d5ff; padding: 14px; border-radius: 10px; background: #faf5ff; text-align: center;">
|
| 61 |
-
<span style="font-size: 11px; font-weight: 800; color: #7c3aed; text-transform: uppercase; display: block; margin-bottom: 6px; letter-spacing: 0.5px;">Scheme</span>
|
| 62 |
-
<span style="font-size: 24px; font-weight: 900; color: #4c1d95; display: block; line-height: 1;">NVFP4</span>
|
| 63 |
-
<span style="font-size: 12px; color: #64748b; font-weight: 600;">W4A4 · GPTQ + MSE</span>
|
| 64 |
-
</div>
|
| 65 |
-
</div>
|
| 66 |
-
</div>
|
| 67 |
|
| 68 |
**TL;DR:** Qwopus3.6-27B-Coder, quantized to NVFP4 (W4A4) for vLLM on NVIDIA Blackwell. 18 GB, wikitext-2 PPL 6.63, 256K agentic coder.
|
| 69 |
|
|
@@ -83,7 +44,7 @@ this build: 6.63.
|
|
| 83 |
- About 18 GB on disk versus about 55.6 GB for the bf16 source (about 33%).
|
| 84 |
- Built for vLLM on NVIDIA Blackwell, where both the 4-bit weight and 4-bit activation
|
| 85 |
paths are accelerated. On pre-Blackwell GPUs vLLM runs it weight-only.
|
| 86 |
-
- Loading and generation verified in vLLM
|
| 87 |
|
| 88 |
## Fidelity
|
| 89 |
|
|
@@ -213,7 +174,4 @@ the base model.
|
|
| 213 |
- Base model: [Jackrong](https://huggingface.co/Jackrong)
|
| 214 |
- Quantization tooling: [llm-compressor](https://github.com/vllm-project/llm-compressor) / [compressed-tensors](https://github.com/neuralmagic/compressed-tensors)
|
| 215 |
|
| 216 |
-
<div style="font-family:
|
| 217 |
-
Part of <a href="https://huggingface.co/spaces/maci0/rogue-quants" style="color: #6d28d9; font-weight: 700; text-decoration: none;">🎲 Rogue Quants</a>, a set of NVFP4 (W4A4) quants for vLLM on Blackwell. See the full <a href="https://huggingface.co/collections/maci0/nvfp4-quants-gb10-blackwell-6a446fc03174db196e436339" style="color: #6d28d9; font-weight: 700; text-decoration: none;">NVFP4 Quants collection</a>.
|
| 218 |
-
<br>Built on NVIDIA GB10 (Blackwell, sm_121) with llm-compressor · GPTQ + MSE · shared fused-layer scales.
|
| 219 |
-
</div>
|
|
|
|
| 23 |
- coder
|
| 24 |
---
|
| 25 |
|
| 26 |
+
|
| 27 |
+
<div style="font-family:ui-monospace,SFMono-Regular,Menlo,monospace;max-width:760px;border:1px solid #cec9ba;background:#f2efe6;color:#14130f;padding:24px 26px;position:relative;border-radius:2px;margin-bottom:26px;"><div style="display:flex;justify-content:space-between;align-items:flex-start;gap:12px;"><span style="font-size:12px;font-weight:700;letter-spacing:0.02em;">RQ-27B-CODER</span></div><div style="font-family:ui-sans-serif,system-ui,-apple-system,sans-serif;font-size:25px;font-weight:800;letter-spacing:-0.02em;line-height:1.12;margin:16px 0 6px;color:#14130f;">Qwopus3.6-27B-Coder · NVFP4</div><div style="font-family:ui-sans-serif,system-ui,-apple-system,sans-serif;font-size:14px;color:#4a4740;margin-bottom:16px;">27B agentic coder VL · tool-calling · thinking-mode reasoning.</div><table style="width:100%;border-collapse:collapse;font-size:13px;font-variant-numeric:tabular-nums;"><tr><td style="padding:6px 0;border-top:1.5px solid #14130f;border-bottom:1px solid #cec9ba;color:#6f6b60;text-transform:uppercase;letter-spacing:0.05em;font-size:11px;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;">Format</td><td style="padding:6px 0;border-top:1.5px solid #14130f;border-bottom:1px solid #cec9ba;text-align:right;font-weight:700;color:#14130f;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;">NVFP4 · W4A4</td></tr><tr><td style="padding:6px 0;border-bottom:1px solid #cec9ba;color:#6f6b60;text-transform:uppercase;letter-spacing:0.05em;font-size:11px;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;">Size</td><td style="padding:6px 0;border-bottom:1px solid #cec9ba;text-align:right;font-weight:700;color:#14130f;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;">18 GB</td></tr><tr><td style="padding:6px 0;border-bottom:1px solid #cec9ba;color:#6f6b60;text-transform:uppercase;letter-spacing:0.05em;font-size:11px;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;">Perplexity</td><td style="padding:6px 0;border-bottom:1px solid #cec9ba;text-align:right;font-weight:700;color:#14130f;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;">6.63</td></tr><tr><td style="padding:6px 0;color:#6f6b60;text-transform:uppercase;letter-spacing:0.05em;font-size:11px;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;">Context</td><td style="padding:6px 0;text-align:right;font-weight:700;color:#14130f;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;">256K</td></tr></table></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
**TL;DR:** Qwopus3.6-27B-Coder, quantized to NVFP4 (W4A4) for vLLM on NVIDIA Blackwell. 18 GB, wikitext-2 PPL 6.63, 256K agentic coder.
|
| 30 |
|
|
|
|
| 44 |
- About 18 GB on disk versus about 55.6 GB for the bf16 source (about 33%).
|
| 45 |
- Built for vLLM on NVIDIA Blackwell, where both the 4-bit weight and 4-bit activation
|
| 46 |
paths are accelerated. On pre-Blackwell GPUs vLLM runs it weight-only.
|
| 47 |
+
- Loading and generation verified in vLLM on an NVIDIA GB10 (Blackwell, sm_121).
|
| 48 |
|
| 49 |
## Fidelity
|
| 50 |
|
|
|
|
| 174 |
- Base model: [Jackrong](https://huggingface.co/Jackrong)
|
| 175 |
- Quantization tooling: [llm-compressor](https://github.com/vllm-project/llm-compressor) / [compressed-tensors](https://github.com/neuralmagic/compressed-tensors)
|
| 176 |
|
| 177 |
+
<div style="font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:12px;color:#6f6b60;border-top:1.5px solid #14130f;padding-top:14px;margin-top:30px;">Part of <a href="https://huggingface.co/spaces/maci0/rogue-quants" style="color:#b5231c;font-weight:700;text-decoration:none;">Rogue Quants</a> — NVFP4 component datasheets · <a href="https://huggingface.co/collections/maci0/nvfp4-quants-gb10-blackwell-6a446fc03174db196e436339" style="color:#b5231c;font-weight:700;text-decoration:none;">collection</a>. Fabricated on GB10 (Blackwell) with llm-compressor.</div>
|
|
|
|
|
|
|
|
|