Views
No views yet
| Params | 27B |
|---|---|
| Active | 27B (dense) |
| Size | 18 GB |
| Perplexity | 6.63 |
| Refusals | n/a |
| Context | 256K |
| MTP head | bf16 |
compressed-tensors nvfp4-pack-quantized format with
llm-compressor. Weights are
quantized with GPTQ (error-compensated rounding) and an MSE observer, on a
domain-matched calibration blend that includes code.config.json (compressed-tensors); no quantization flag
needed. --reasoning-parser qwen3 splits the <think> block into reasoning_content;
--tool-call-parser qwen3_coder enables tool/function calling for agentic coding.1vllm serve maci0/Qwopus3.6-27B-Coder-NVFP4 \
2 --served-model-name qwopus-27b-coder-nvfp4 \
3 --max-model-len 131072 \
4 --gpu-memory-utilization 0.90 \
5 --kv-cache-dtype fp8 \
6 --reasoning-parser qwen3 \
7 --enable-auto-tool-choice --tool-call-parser qwen3_coder--max-model-len 131072 is a safe default; raise it if memory allows.--language-model-only to skip the vision tower and free KV cache for text use.1from openai import OpenAI
2client = OpenAI(base_url="http://localhost:8000/v1", api_key="x")
3r = client.chat.completions.create(
4 model="qwopus-27b-coder-nvfp4",
5 messages=[{"role": "user", "content": "Write a Python function that merges two sorted lists."}],
6)
7print(r.choices[0].message.content)1curl http://localhost:8000/v1/chat/completions -H "Content-Type: application/json" -d '{
2 "model": "qwopus-27b-coder-nvfp4",
3 "messages": [{"role": "user", "content": "Write a Python function that merges two sorted lists."}]
4}'max_position_embeddings 262144).| Scheme | NVFP4, W4A4 |
| Weight rounding | GPTQ (Hessian-based error compensation), MSE observer |
| Weights | FP4 (E2M1), group_size=16, tensor_group, FP8 (E4M3) group scales, shared across fused layers |
| Activations | FP4, dynamic per-group, FP8 (E4M3) scales |
| Quantized | all language-model Linear layers |
| Kept in bf16 | vision tower (model.visual.*), lm_head, MTP head |
| Untouched | gated delta-net Conv1d and SSM params (A_log, dt_bias), never Linear |
max_seq_len=2048, text-only path through the VL model.temperature=0.6, top_p=0.95, top_k=20temperature=1.0, top_p=0.95, top_k=20temperature=0.7, top_p=0.80, top_k=20{%- set enable_thinking = false %} in the chat template, or
pass extra_body={"chat_template_kwargs": {"enable_thinking": false}}.llmcompressor==0.12.0, compressed-tensors==0.17.1, transformers==5.12.1,
torch==2.11.0+cu130, on an NVIDIA GB10 (Blackwell, sm_121). llm-compressor 0.12 shares
the NVFP4 global scale across fused layers automatically (q/k/v, gate/up).--reasoning-parser and --tool-call-parser are not auto-detected; pass them explicitly.chat_template_kwargs.