CoolFace
Modelpublic

Frosty40/Qwen-AgentWorld-35B-A3B-NVFP4

sourceHugging Faceapache-2.0updated 3mo agoView on Hugging Face
0likes78downloads
Model Card

hero

Qwen-AgentWorld-35B-A3B-NVFP4

NVFP4-quantized Qwen-AgentWorld-35B-A3B for vLLM. Uses FlashInfer Cutlass NVFP4 GEMM kernels, compressed-tensors quantization, and the Qwen3_5MoeForConditionalGeneration architecture.

Benchmarks (NVIDIA GB10, 131 GB VRAM, vLLM v0.23.0)

MetricValue
Model VRAM20.94 GB
Single prompt~26 tokens/sec
Batch 4~86 tokens/sec
Batch 8~181 tokens/sec

In Testing

temperature=0.6, max 1024 tokens, enforce_eager.

PromptResult
Capital of FranceCorrect
US 2020/2024 electionsCorrect
Alice apples (reasoning)Correct
Syllogism (logic)Correct
137*429 (math)Correct (58773)
Fibonacci functionCorrect

Important: The model outputs <think>...</think> blocks (Qwen3.5 thinking format). At temperature=0 the greedy sampling may stall in the thinking phase. Use temperature>=0.6 (the model's default) for reliable answer extraction. For agent workloads, use --max-tokens >= 1024 to accommodate think+answer.

Quick Start

bash
pip install vllm flashinfer

vllm serve ./nvfp4_model \
    --enforce-eager \
    --max-model-len 4096 \
    --port 8000

Query:

bash
curl http://localhost:8000/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{"model":"./nvfp4_model","messages":[{"role":"user","content":"Hello!"}],"max_tokens":128,"temperature":0}'

Credits