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.
1vllm quantize \
2 --model Qwen/Qwen3.6-35B-A3B \
3 --quantization nvfp4 \
4 --output-dir NeuralNet-Hub/Qwen3.6-35B-A3B-NVFP4vllm>=0.9.0 recommended).1vllm serve NeuralNet-Hub/Qwen3.6-35B-A3B-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# Optimized for NVIDIA RTX 6000 PRO (Blackwell)
3# Benchmarked: ~85-90 parallel requests, up to 1000 tok/sec at higher context lengths
4
5model: NeuralNet-Hub/Qwen3.6-35B-A3B-NVFP4
6dtype: bfloat16
7kv-cache-dtype: fp8
8gpu-memory-utilization: 0.95
9max-model-len: 262144
10max-num-batched-tokens: 4096
11max-num-seqs: 200
12max-cudagraph-capture-size: 209
13enable-prefix-caching: true
14trust-remote-code: true
15
16reasoning-parser: qwen3
17enable-auto-tool-choice: true
18tool-call-parser: qwen3_coder
19
20default-chat-template-kwargs: '{"enable_thinking": false}'
21
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-35B-A3B-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-35B-A3B-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-35B-A3B-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 |
pip install -U "huggingface_hub[cli]"huggingface-cli download NeuralNet-Hub/Qwen3.6-35B-A3B-NVFP4 --local-dir ./Qwen3.6-35B-A3B-NVFP41huggingface-cli download NeuralNet-Hub/Qwen3.6-35B-A3B-NVFP4 \
2 --include "*.safetensors" \
3 --local-dir ./Qwen3.6-35B-A3B-NVFP4| 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.