Views
No views yet
[!IMPORTANT] NVFP4 quantization requires NVIDIA Blackwell architecture (GB200, RTX 5000 series, etc.). This format is not compatible with Ampere, Ada Lovelace, or Hopper GPUs. If you are running on an older GPU, please use a different quantization format.
vllm>=0.9.0 recommended).1vllm serve NeuralNet-Hub/Qwen3.6-27B-NVFP4 \
2 --quantization nvfp4 \
3 --dtype bfloat16 \
4 --kv-cache-dtype fp8 \
5 --max-model-len 262144 \
6 --reasoning-parser qwen3 \
7 --enable-auto-tool-choice \
8 --tool-call-parser qwen3_coder1# Deploy with: vllm serve --config config.yaml
2
3# Model config
4model: NeuralNet-Hub/Qwen3.6-27B-NVFP4
5dtype: bfloat16
6kv-cache-dtype: fp8
7gpu-memory-utilization: 0.95
8max-model-len: 262144
9max-num-batched-tokens: 4096
10max-num-seqs: 200
11max-cudagraph-capture-size: 209
12enable-prefix-caching: true
13trust-remote-code: true
14
15# template parser
16reasoning-parser: qwen3
17enable-auto-tool-choice: true
18tool-call-parser: qwen3_coder
19
20# Optional
21default-chat-template-kwargs: '{"enable_thinking": false}'
22download-dir: /workspace/models
23host: 0.0.0.0
24port: 18000vllm serve --config config.yaml1from openai import OpenAI
2
3client = OpenAI(base_url="http://localhost:18000/v1", api_key="EMPTY")
4
5messages = [{"role": "user", "content": "Your message here"}]
6
7response = client.chat.completions.create(
8 model="NeuralNet-Hub/Qwen3.6-27B-NVFP4",
9 messages=messages,
10 max_tokens=32768,
11 temperature=1.0,
12 top_p=0.95,
13 extra_body={"top_k": 20},
14)
15print(response.choices[0].message.content)1response = client.chat.completions.create(
2 model="NeuralNet-Hub/Qwen3.6-27B-NVFP4",
3 messages=messages,
4 max_tokens=8192,
5 temperature=0.7,
6 top_p=0.8,
7 presence_penalty=1.5,
8 extra_body={
9 "top_k": 20,
10 "chat_template_kwargs": {"enable_thinking": False},
11 },
12)1messages = [
2 {
3 "role": "user",
4 "content": [
5 {"type": "image_url", "image_url": {"url": "https://example.com/image.jpg"}},
6 {"type": "text", "text": "Describe this image in detail."}
7 ]
8 }
9]
10
11response = client.chat.completions.create(
12 model="NeuralNet-Hub/Qwen3.6-27B-NVFP4",
13 messages=messages,
14 max_tokens=32768,
15 temperature=1.0,
16 top_p=0.95,
17 extra_body={"top_k": 20},
18)| Mode | temperature | top_p | top_k | presence_penalty |
|---|---|---|---|---|
| Thinking — general tasks | 1.0 | 0.95 | 20 | 0.0 |
| Thinking — precise coding | 0.6 | 0.95 | 20 | 0.0 |
| Instruct (non-thinking) | 0.7 | 0.80 | 20 | 1.5 |
| Component | Requirement |
|---|---|
| GPU Architecture | NVIDIA Blackwell (sm_100+) |
| VRAM | 24 GB+ recommended |
| CUDA | 12.8+ |
| vLLM | 0.9.0+ |
[!WARNING] NVFP4 is exclusively supported on NVIDIA Blackwell GPUs. Attempting to run this model on Ampere (A100), Ada Lovelace (RTX 4000), or Hopper (H100) will fail. For those architectures, use the original BF16 model or an AWQ/GPTQ quantized variant.