bullerwins
Qwen3.6-27B-NVFP4
Run this model inference on single tenant GPU with unmatched speed and reliability at scale.
Get help setting up a custom Dedicated Endpoints.
Talk with our engineer to get a quote for reserved GPU instances with discounts.
README
License: apache-2.0Why This Model Wins
Unlike standard compressed-tensors NVFP4 (per-Linear global scales), this checkpoint uses ModelOpt's modelopt_fp4 format with shared global scales across fused parallel layers, the exact approach that vLLM recommends for maximum NVFP4 quality. Every quantization hyperparameter was optimized through 41 systematic experiments.
Benchmark Comparison
All benchmarks run with vLLM 0.22, temperature=0, thinking disabled, seed=42, identical server config.
| Model | Format | Size | LiveCodeBench | MATH-500 | GPQA-Diamond |
|---|---|---|---|---|---|
| Qwen3.6-27B (BF16) | — | 54 GB | 0.6834 | 0.858 | 0.207 |
| Ours | modelopt_fp4 | 27 GB | 0.6701 | 0.842 | 0.198 |
| Unsloth NVFP4 | compressed-tensors | 25 GB | 0.7211* | 0.844 | 0.182 |
| Cyankiwi AWQ INT4 | compressed-tensors | 20 GB | 0.7273* | 0.856 | 0.232 |
*LiveCodeBench partial (300-355 samples). Ours: full 1055 samples at 0.6701. On matching 300-sample subset, ours scores 0.8333 vs unsloth 0.7211 vs cyankiwi 0.7273.
Key Takeaway
Our modelopt_fp4 format delivers +10.6pp better code generation than the best alternative NVFP4, with competitive math and reasoning. The shared global scale across fused Q/K/V/O projections is the critical quality differentiator.
Quantization Recipe
| Parameter | Value |
|---|---|
| Strategy | MLP_ONLY (attention QKV in BF16, MLP in NVFP4) |
| Calibration samples | 512 |
| Sequence length | 2048 tokens |
| Calibration data | UltraChat + evol-codealpaca + Mixture-of-Thoughts |
| Random seed | 42 |
| Algorithm | max (modelopt default) |
| Tool | NVIDIA ModelOpt 0.45 |
Why MLP_ONLY?
Quantizing attention layers (Q/K/V/O projections) causes catastrophic quality loss. MLP layers (gate/up/down) are far more robust to 4-bit compression. This is NVIDIA's own recommendation and confirmed across 41 experiments.
Why 512 Samples?
- 256 → underfits, poor easy-problem performance (-4.7pp LCB)
- 512 → sweet spot, best overall quality
- 2048 → overfits calibration distribution, -7.2pp LCB
Why Diverse Calibration Data?
Domain-specific calibration (code-only, math-only) helps in-domain but severely hurts cross-domain (-5.6pp LCB). The mix of chat + code + reasoning data produces the most general-purpose quantization.
vLLM Serving
bash
vllm serve bullerwins/Qwen3.6-27B-NVFP4 \--quantization modelopt_fp4 \--kv-cache-dtype fp8 \--max-model-len 16384 \--dtype bfloat16 \--trust-remote-code
Blackwell GPU Performance
This model uses NVFP4 floating-point format (1-2-1: sign-exponent-mantissa) natively accelerated on NVIDIA Blackwell GPUs (RTX 5090, RTX PRO 6000) via FlashInfer Cutlass NVFP4 kernels.
Calibration Size Sweep
| Samples | LCB | MATH |
|---|---|---|
| 256 | 0.6234 | — |
| 512 | 0.6701 | 0.842 |
| 2048 | 0.598 | 0.860 |
Sequence Length Sweep
| Seq Len | LCB |
|---|---|
| 1024 | 0.6231 |
| 2048 | 0.6701 |
| 4096 | 0.6163 |
Data Type Sweep
| Calibration Data | LCB | MATH |
|---|---|---|
| Diverse (chat+code+reasoning) | 0.6701 | 0.842 |
| Code-only | 0.6208 | — |
| WikiText-103 | 0.6202 | 0.844 |
| Self-calibration (BF16 MATH outputs) | 0.6144 | 0.848 |
| None (zero calibration) | 0.0000 | — |
Random Seed Sensitivity
| Seed | LCB |
|---|---|
| 42 | 0.6701 |
| 123 | 0.6437 |
| 999 | 0.6326 |
GPQA Statistical Analysis (4 runs)
| Stat | Value |
|---|---|
| Mean ± σ | 0.1982 ± 0.0149 |
| 95% CI | [0.1833, 0.2131] |
| BF16 | 0.2071 (inside CI) |
| Significant? | No — NVFP4 indistinguishable from BF16 |
Qwen3.6-27B
[!Note] This repository contains model weights and configuration files for the post-trained model in the Hugging Face Transformers format.
These artifacts are compatible with Hugging Face Transformers, vLLM, SGLang, KTransformers, etc.
Following the February release of the Qwen3.5 series, we're pleased to share the first open-weight variant of Qwen3.6. Built on direct feedback from the community, Qwen3.6 prioritizes stability and real-world utility, offering developers a more intuitive, responsive, and genuinely productive coding experience.
Qwen3.6 Highlights
This release delivers substantial upgrades, particularly in
- Agentic Coding: the model now handles frontend workflows and repository-level reasoning with greater fluency and precision.
- Thinking Preservation: we've introduced a new option to retain reasoning context from historical messages, streamlining iterative development and reducing overhead.

For more details, please refer to our blog post Qwen3.6-27B.
Model Overview
- Type: Causal Language Model with Vision Encoder
- Training Stage: Pre-training & Post-training
- Language Model
- Number of Parameters: 27B
- Hidden Dimension: 5120
- Token Embedding: 248320 (Padded)
- Number of Layers: 64
- Hidden Layout: 16 × (3 × (Gated DeltaNet → FFN) → 1 × (Gated Attention → FFN))
- Gated DeltaNet:
- Number of Linear Attention Heads: 48 for V and 16 for QK
- Head Dimension: 128
- Gated Attention:
- Number of Attention Heads: 24 for Q and 4 for KV
- Head Dimension: 256
- Rotary Position Embedding Dimension: 64
- Feed Forward Network:
- Intermediate Dimension: 17408
- LM Output: 248320 (Padded)
- MTP: trained with multi-steps
- Context Length: 262,144 natively and extensible up to 1,010,000 tokens.
Benchmark Results
Language
Vision Language
Quickstart
For streamlined integration, we recommend using Qwen3.6 via APIs. Below is a guide to use Qwen3.6 via OpenAI-compatible API.
Serving Qwen3.6
Qwen3.6 can be served via APIs with popular inference frameworks. In the following, we show example commands to launch OpenAI-Compatible API servers for Qwen3.6 models.
[!Important] Inference efficiency and throughput vary significantly across frameworks. We recommend using the latest framework versions to ensure optimal performance and compatibility. For production workloads or high-throughput scenarios, dedicated serving engines such as SGLang, KTransformers or vLLM are strongly recommended.
[!Important] The model has a default context length of 262,144 tokens. If you encounter out-of-memory (OOM) errors, consider reducing the context window. However, because Qwen3.6 leverages extended context for complex tasks, we advise maintaining a context length of at least 128K tokens to preserve thinking capabilities.
SGLang
SGLang is a fast serving framework for large language models and vision language models.
sglang>=0.5.10 is recommended for Qwen3.6, which can be installed using the following command in a fresh environment:
shell
uv pip install sglang[all]
See its documentation for more details.
The following will create API endpoints at http://localhost:8000/v1:
-
Standard Version: The following command can be used to create an API endpoint with maximum context length 262,144 tokens using tensor parallel on 8 GPUs.
shell
python -m sglang.launch_server --model-path Qwen/Qwen3.6-27B --port 8000 --tp-size 8 --mem-fraction-static 0.8 --context-length 262144 --reasoning-parser qwen3 -
Tool Use: To support tool use, you can use the following command.
shell
python -m sglang.launch_server --model-path Qwen/Qwen3.6-27B --port 8000 --tp-size 8 --mem-fraction-static 0.8 --context-length 262144 --reasoning-parser qwen3 --tool-call-parser qwen3_coder -
Multi-Token Prediction (MTP): The following command is recommended for MTP:
shell
python -m sglang.launch_server --model-path Qwen/Qwen3.6-27B --port 8000 --tp-size 8 --mem-fraction-static 0.8 --context-length 262144 --reasoning-parser qwen3 --speculative-algo NEXTN --speculative-num-steps 3 --speculative-eagle-topk 1 --speculative-num-draft-tokens 4
For detailed deployment guide, see the SGLang Qwen3.5 Cookbook.
vLLM
vLLM is a high-throughput and memory-efficient inference and serving engine for LLMs.
vllm>=0.19.0 is recommended for Qwen3.6, which can be installed using the following command in a fresh environment:
shell
uv pip install vllm --torch-backend=auto
See its documentation for more details.
The following will create API endpoints at http://localhost:8000/v1:
-
Standard Version: The following command can be used to create an API endpoint with maximum context length 262,144 tokens using tensor parallel on 8 GPUs.
shell
vllm serve Qwen/Qwen3.6-27B --port 8000 --tensor-parallel-size 8 --max-model-len 262144 --reasoning-parser qwen3 -
Tool Call: To support tool use, you can use the following command.
shell
vllm serve Qwen/Qwen3.6-27B --port 8000 --tensor-parallel-size 8 --max-model-len 262144 --reasoning-parser qwen3 --enable-auto-tool-choice --tool-call-parser qwen3_coder -
Multi-Token Prediction (MTP): The following command is recommended for MTP:
shell
vllm serve Qwen/Qwen3.6-27B --port 8000 --tensor-parallel-size 8 --max-model-len 262144 --reasoning-parser qwen3 --speculative-config '{"method":"qwen3_next_mtp","num_speculative_tokens":2}' -
Text-Only: The following command skips the vision encoder and multimodal profiling to free up memory for additional KV cache:
shell
vllm serve Qwen/Qwen3.6-27B --port 8000 --tensor-parallel-size 8 --max-model-len 262144 --reasoning-parser qwen3 --language-model-only
For detailed deployment guide, see the vLLM Qwen3.5 Recipe.
KTransformers
KTransformers is a flexible framework for experiencing cutting-edge LLM inference optimizations with CPU-GPU heterogeneous computing. For running Qwen3.6 with KTransformers, see the KTransformers Deployment Guide.
Hugging Face Transformers
Hugging Face Transformers contains a lightweight server which can be used for quick testing and moderate load deployment.
The latest transformers is required for Qwen3.6:
shell
pip install "transformers[serving]"
See its documentation for more details. Please also make sure torchvision and pillow are installed.
Then, run transformers serve to launch a server with API endpoints at http://localhost:8000/v1; it will place the model on accelerators if available:
shell
transformers serve Qwen/Qwen3.6-27B --port 8000 --continuous-batching
Using Qwen3.6 via the Chat Completions API
The chat completions API is accessible via standard HTTP requests or OpenAI SDKs. Here, we show examples using the OpenAI Python SDK.
Before starting, make sure it is installed and the API key and the API base URL is configured, e.g.:
shell
pip install -U openai# Set the following accordinglyexport OPENAI_BASE_URL="http://localhost:8000/v1"export OPENAI_API_KEY="EMPTY"
[!Tip] We recommend using the following set of sampling parameters for generation
- Thinking mode for general tasks:
temperature=1.0, top_p=0.95, top_k=20, min_p=0.0, presence_penalty=0.0, repetition_penalty=1.0- Thinking mode for precise coding tasks (e.g. WebDev):
temperature=0.6, top_p=0.95, top_k=20, min_p=0.0, presence_penalty=0.0, repetition_penalty=1.0- Instruct (or non-thinking) mode:
temperature=0.7, top_p=0.80, top_k=20, min_p=0.0, presence_penalty=1.5, repetition_penalty=1.0Please note that the support for sampling parameters varies according to inference frameworks.
[!Important] Qwen3.6 models operate in thinking mode by default, generating thinking content signified by
<think>\n...</think>\n\nbefore producing the final responses. To disable thinking content and obtain direct response, refer to the examples here.
Text-Only Input
python
from openai import OpenAI# Configured by environment variablesclient = OpenAI()messages = [{"role": "user", "content": "Type \"I love Qwen3.6\" backwards"},]chat_response = client.chat.completions.create(model="Qwen/Qwen3.6-27B",messages=messages,max_tokens=81920,temperature=1.0,top_p=0.95,presence_penalty=0.0,extra_body={"top_k": 20,},)print("Chat response:", chat_response)
Image Input
python
from openai import OpenAI# Configured by environment variablesclient = OpenAI()messages = [{"role": "user","content": [{"type": "image_url","image_url": {"url": "https://qianwen-res.oss-accelerate.aliyuncs.com/Qwen3.5/demo/CI_Demo/mathv-1327.jpg"}},{"type": "text","text": "The centres of the four illustrated circles are in the corners of the square. The two big circles touch each other and also the two little circles. With which factor do you have to multiply the radii of the little circles to obtain the radius of the big circles?\nChoices:\n(A) $\\frac{2}{9}$\n(B) $\\sqrt{5}$\n(C) $0.8 \\cdot \\pi$\n(D) 2.5\n(E) $1+\\sqrt{2}$"}]}]chat_response = client.chat.completions.create(model="Qwen/Qwen3.6-27B",messages=messages,max_tokens=81920,temperature=1.0,top_p=0.95,presence_penalty=0.0,extra_body={"top_k": 20,},)print("Chat response:", chat_response)
Video Input
python
from openai import OpenAI# Configured by environment variablesclient = OpenAI()messages = [{"role": "user","content": [{"type": "video_url","video_url": {"url": "https://qianwen-res.oss-accelerate.aliyuncs.com/Qwen3.5/demo/video/N1cdUjctpG8.mp4"}},{"type": "text","text": "How many porcelain jars were discovered in the niches located in the primary chamber of the tomb?"}]}]# When vLLM is launched with `--media-io-kwargs '{"video": {"num_frames": -1}}'`,# video frame sampling can be configured via `extra_body` (e.g., by setting `fps`).# This feature is currently supported only in vLLM.## By default, `fps=2` and `do_sample_frames=True`.# With `do_sample_frames=True`, you can customize the `fps` value to set your desired video sampling rate.chat_response = client.chat.completions.create(model="Qwen/Qwen3.6-27B",messages=messages,max_tokens=81920,temperature=1.0,top_p=0.95,presence_penalty=0.0,extra_body={"top_k": 20,"mm_processor_kwargs": {"fps": 2, "do_sample_frames": True},},)print("Chat response:", chat_response)
Instruct (or Non-Thinking) Mode
[!Important] Qwen3.6 does not officially support the soft switch of Qwen3, i.e.,
/thinkand/nothink.
Qwen3.6 will think by default before response. You can obtain direct response from the model without thinking by configuring the API parameters. For example,
python
from openai import OpenAI# Configured by environment variablesclient = OpenAI()messages = [{"role": "user","content": [{"type": "image_url","image_url": {"url": "https://qianwen-res.oss-accelerate.aliyuncs.com/Qwen3.6/demo/RealWorld/RealWorld-04.png"}},{"type": "text","text": "Where is this?"}]}]chat_response = client.chat.completions.create(model="Qwen/Qwen3.6-27B",messages=messages,max_tokens=32768,temperature=0.7,top_p=0.8,presence_penalty=1.5,extra_body={"top_k": 20,"chat_template_kwargs": {"enable_thinking": False},},)print("Chat response:", chat_response)
[!Note] If you are using APIs from Alibaba Cloud Model Studio, in addition to changing
model, please use"enable_thinking": Falseinstead of"chat_template_kwargs": {"enable_thinking": False}.
Preserve Thinking
By default, only the thinking blocks generated in handling the latest user message is retained, resulting in a pattern commonly as interleaved thinking.
Qwen3.6 has been additionally trained to preserve and leverage thinking traces from historical messages.
You can enable this behavior by setting the preserve_thinking option:
python
from openai import OpenAI# Configured by environment variablesclient = OpenAI()messages = [...]chat_response = client.chat.completions.create(model="Qwen/Qwen3.6-27B",messages=messages,max_tokens=32768,temperature=0.6,top_p=0.95,presence_penalty=0.0,extra_body={"top_k": 20,"chat_template_kwargs": {"preserve_thinking": True},},)print("Chat response:", chat_response)
[!Note] If you are using APIs from Alibaba Cloud Model Studio, in addition to changing
model, please use"preserve_thinking": Trueinstead of"chat_template_kwargs": {"preserve_thinking": False}.
This capability is particularly beneficial for agent scenarios, where maintaining full reasoning context can enhance decision consistency and, in many cases, reduce overall token consumption by minimizing redundant reasoning. Additionally, it can improve KV cache utilization, optimizing inference efficiency in both thinking and non-thinking modes.
Agentic Usage
Qwen3.6 excels in tool calling capabilities.
Qwen-Agent
We recommend using Qwen-Agent to quickly build Agent applications with Qwen3.6.
To define the available tools, you can use the MCP configuration file, use the integrated tool of Qwen-Agent, or integrate other tools by yourself.
python
import osfrom qwen_agent.agents import Assistant# Define LLM# Using Alibaba Cloud Model Studiollm_cfg = {# Use the OpenAI-compatible model service provided by DashScope:'model': 'qwen3.6-27b','model_type': 'qwenvl_oai','model_server': 'https://dashscope.aliyuncs.com/compatible-mode/v1','api_key': os.getenv('DASHSCOPE_API_KEY'),'generate_cfg': {'use_raw_api': True,# When using Dash Scope OAI API, pass the parameter of whether to enable thinking mode in this way'extra_body': {'enable_thinking': True,'preserve_thinking': True,},},}# Using OpenAI-compatible API endpoint.# functionality of the deployment frameworks and let Qwen-Agent automate the related operations.## llm_cfg = {# # Use your own model service compatible with OpenAI API by vLLM/SGLang:# 'model': 'Qwen/Qwen3.6-27B',# 'model_type': 'qwenvl_oai',# 'model_server': 'http://localhost:8000/v1', # api_base# 'api_key': 'EMPTY',## 'generate_cfg': {# 'use_raw_api': True,# # When using vLLM/SGLang OAI API, pass the parameter of whether to enable thinking mode in this way# 'extra_body': {# 'chat_template_kwargs': {'enable_thinking': True, 'preserve_thinking': True}# },# },# }# Define Toolstools = [{'mcpServers': { # You can specify the MCP configuration file"filesystem": {"command": "npx","args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/xxxx/Desktop"]}}}]# Define Agentbot = Assistant(llm=llm_cfg, function_list=tools)# Streaming generationmessages = [{'role': 'user', 'content': 'Help me organize my desktop.'}]for responses in bot.run(messages=messages):passprint(responses)# Streaming generationmessages = [{'role': 'user', 'content': 'Develop a dog website and save it on the desktop'}]for responses in bot.run(messages=messages):passprint(responses)
Qwen Code
Qwen Code is an open-source AI agent for the terminal, optimized for Qwen models. It helps you understand large codebases, automate tedious work, and ship faster.
For more information, please refer to Qwen Code.
Processing Ultra-Long Texts
Qwen3.6 natively supports context lengths of up to 262,144 tokens. For long-horizon tasks where the total length (including both input and output) exceeds this limit, we recommend using RoPE scaling techniques to handle long texts effectively., e.g., YaRN.
YaRN is currently supported by several inference frameworks, e.g., transformers, vllm, ktransformers and sglang.
In general, there are two approaches to enabling YaRN for supported frameworks:
-
Modifying the model configuration file: In the
config.jsonfile, change therope_parametersfields intext_configto:json
{"mrope_interleaved": true,"mrope_section": [11,11,10],"rope_type": "yarn","rope_theta": 10000000,"partial_rotary_factor": 0.25,"factor": 4.0,"original_max_position_embeddings": 262144,} -
Passing command line arguments:
For
vllm, you can useshell
VLLM_ALLOW_LONG_MAX_MODEL_LEN=1 vllm serve ... --hf-overrides '{"text_config": {"rope_parameters": {"mrope_interleaved": true, "mrope_section": [11, 11, 10], "rope_type": "yarn", "rope_theta": 10000000, "partial_rotary_factor": 0.25, "factor": 4.0, "original_max_position_embeddings": 262144}}}' --max-model-len 1010000For
sglangandktransformers, you can useshell
SGLANG_ALLOW_OVERWRITE_LONGER_CONTEXT_LEN=1 python -m sglang.launch_server ... --json-model-override-args '{"text_config": {"rope_parameters": {"mrope_interleaved": true, "mrope_section": [11, 11, 10], "rope_type": "yarn", "rope_theta": 10000000, "partial_rotary_factor": 0.25, "factor": 4.0, "original_max_position_embeddings": 262144}}}' --context-length 1010000
[!NOTE] All the notable open-source frameworks implement static YaRN, which means the scaling factor remains constant regardless of input length, potentially impacting performance on shorter texts. We advise modifying the
rope_parametersconfiguration only when processing long contexts is required. It is also recommended to modify thefactoras needed. For example, if the typical context length for your application is 524,288 tokens, it would be better to setfactoras 2.0.
Best Practices
To achieve optimal performance, we recommend the following settings:
-
Sampling Parameters:
- We suggest using the following sets of sampling parameters depending on the mode and task type:
- Thinking mode for general tasks:
temperature=1.0,top_p=0.95,top_k=20,min_p=0.0,presence_penalty=0.0,repetition_penalty=1.0 - Thinking mode for precise coding tasks (e.g., WebDev):
temperature=0.6,top_p=0.95,top_k=20,min_p=0.0,presence_penalty=0.0,repetition_penalty=1.0 - Instruct (or non-thinking) mode:
temperature=0.7,top_p=0.80,top_k=20,min_p=0.0,presence_penalty=1.5,repetition_penalty=1.0
- Thinking mode for general tasks:
- For supported frameworks, you can adjust the
presence_penaltyparameter between 0 and 2 to reduce endless repetitions. However, using a higher value may occasionally result in language mixing and a slight decrease in model performance.
- We suggest using the following sets of sampling parameters depending on the mode and task type:
-
Adequate Output Length: We recommend using an output length of 32,768 tokens for most queries. For benchmarking on highly complex problems, such as those found in math and programming competitions, we suggest setting the max output length to 81,920 tokens. This provides the model with sufficient space to generate detailed and comprehensive responses, thereby enhancing its overall performance.
-
Standardize Output Format: We recommend using prompts to standardize model outputs when benchmarking.
- Math Problems: Include "Please reason step by step, and put your final answer within \boxed{}." in the prompt.
- Multiple-Choice Questions: Add the following JSON structure to the prompt to standardize responses: "Please show your choice in the
answerfield with only the choice letter, e.g.,"answer": "C"."
-
Long Video Understanding: To optimize inference efficiency for plain text and images, the
sizeparameter in the releasedvideo_preprocessor_config.jsonis conservatively configured. It is recommended to set thelongest_edgeparameter in the video_preprocessor_config file to 469,762,048 (corresponding to 224k video tokens) to enable higher frame-rate sampling for hour-scale videos and thereby achieve superior performance. For example,json
{"longest_edge": 469762048, "shortest_edge": 4096}Alternatively, override the default values via engine startup parameters. For implementation details, refer to: vLLM / SGLang.
Citation
If you find our work helpful, feel free to give us a cite.
bibtex
@misc{qwen3.6-27b,title = {{Qwen3.6-27B}: Flagship-Level Coding in a {27B} Dense Model},author = {{Qwen Team}},month = {April},year = {2026},url = {https://qwen.ai/blog?id=qwen3.6-27b}}
Model provider
bullerwins
Model tree
Base
Qwen/Qwen3.6-27B
Fine-tuned
this model
Modalities
Input
Video, Text, Image
Output
Text
Pricing
Dedicated Endpoints
View detailsSupported Functionality
Model APIs
Dedicated Endpoints
Container
More information