NVFP4 (W4A4) quantized version of
deepseek-ai/DeepSeek-V2-Lite, quantized using
llm-compressor.
Requires a GPU with NVFP4 tensor core support (NVIDIA Blackwell, SM100+).
1vllm serve carlyou/DeepSeek-V2-Lite-NVFP4 \
2 --trust-remote-code \
3 --max-model-len 2048
1from vllm import LLM, SamplingParams
2
3llm = LLM(
4 model="carlyou/DeepSeek-V2-Lite-NVFP4",
5 trust_remote_code=True,
6 max_model_len=2048,
7)
8
9output = llm.generate("Hello, world!", SamplingParams(max_tokens=128))
10print(output[0].outputs[0].text)
This model is primarily intended for benchmarking and testing NVFP4 quantization support in vLLM, particularly MLA attention + quantization fusion patterns on Blackwell GPUs.