Views
No views yet
| Model Version | Memory Usage | Reduction |
|---|---|---|
| BF16 (Original) | 61.03 GB | Baseline |
| NVFP4-256K (This model) | 19.42 GB | 68.2% |
| Model Version | Throughput | Relative Performance |
|---|---|---|
| BF16 (Original) | 3.65 tokens/s | Baseline |
| NVFP4-256K (This model) | 9.99 tokens/s | 2.74x faster |
modelopt quantization parameter. Standard HuggingFace AutoModelForCausalLM will not work.1from vllm import LLM, SamplingParams
2
3# Load NVFP4 quantized model
4llm = LLM(
5 model="Ex0bit/Qwen3-VLTO-32B-Instruct-NVFP4-256K",
6 quantization="modelopt",
7 trust_remote_code=True,
8 gpu_memory_utilization=0.9
9)
10
11# Generate
12sampling_params = SamplingParams(temperature=0.7, top_p=0.9, max_tokens=256)
13outputs = llm.generate(["Explain quantum computing in simple terms:"], sampling_params)
14print(outputs[0].outputs[0].text)HF_CACHE_DIR: Override HuggingFace cache location1@misc{qwen3vlto32b-nvfp4-256K,
2 author = {Ex0bit},
3 title = {Qwen3-VLTO-32B-Instruct-NVFP4: NVFP4 Quantized Model for DGX Spark},
4 year = {2025},
5 publisher = {HuggingFace},
6 howpublished = {\url{https://huggingface.co/Ex0bit/Qwen3-VLTO-32B-Instruct-NVFP4-256K}},
7}1@misc{qingy2024qwen3vlto,
2 author = {qingy2024},
3 title = {Qwen3-VLTO-32B-Instruct},
4 year = {2024},
5 publisher = {HuggingFace},
6 howpublished = {\url{https://huggingface.co/qingy2024/Qwen3-VLTO-32B-Instruct}},
7}