Views
No views yet
| Property | Value |
|---|---|
| Base Model | Qwen/Qwen3-Coder-Next |
| Architecture | Qwen3NextForCausalLM (Hybrid DeltaNet + Attention + MoE) |
| Parameters | 80B total, 3B activated per token |
| Experts | 512 total, 10 activated + 1 shared |
| Layers | 48 |
| Context Length | 262,144 tokens (256K) |
| Quantization | NVFP4 (FP4 weights + FP4 activations) |
| Size | 45GB (down from ~149GB BF16, 70% reduction) |
| Format | compressed-tensors |
1NUM_CALIBRATION_SAMPLES = 20
2MAX_SEQUENCE_LENGTH = 2048
3DATASET = "HuggingFaceH4/ultrachat_200k" (train_sft)
4moe_calibrate_all_experts = True
5
6# Layers kept in BF16
7ignore = [
8 "lm_head",
9 "re:.*mlp.gate$", # MoE router gates
10 "re:.*mlp.shared_expert_gate$", # Shared expert gates
11 "re:.*linear_attn.*", # DeltaNet linear attention
12]| Model | Accuracy | Delta |
|---|---|---|
| BF16 | 52.90% | - |
| NVFP4 | 51.27% | -1.63% |
1#vllm Serving
2vllm serve GadflyII/Qwen3-Coder-Next-NVFP4 \
3 --tensor-parallel-size 2 \
4 --max-model-len 131072 \
5 --kv-cache-dtype fp8