Views
No views yet
| Property | Value |
|---|---|
| Base model | deepseek-ai/DeepSeek-R1-Distill-Llama-70B |
| Quantization | NVFP4 (W4A4 — weights FP4 E2M1, activations FP4, scales FP8 E4M3) |
| Format | compressed-tensors (native vLLM support) |
| Tool | vllm-project/llm-compressor v0.10.0.2 |
| Calibration | 128 samples, ultrachat-200k (train_sft split), max_seq_length 2048 |
| Size | 40 GB (single safetensors shard set) |
| Requires | NVIDIA Blackwell GPU (SM 120), vLLM >= 0.19 |
1QuantizationModifier:
2 targets: [Linear]
3 ignore: [lm_head]
4 scheme: NVFP41vllm serve PiehSoft/DeepSeek-R1-Distill-Llama-70B-NVFP4 \
2 --host 0.0.0.0 \
3 --port 8081 \
4 --max-model-len 81921from vllm import LLM, SamplingParams
2
3llm = LLM(model="PiehSoft/DeepSeek-R1-Distill-Llama-70B-NVFP4")
4output = llm.generate("What is the meaning of life?", SamplingParams(max_tokens=256))
5print(output[0].outputs[0].text)| Backend | Generation tok/s | Prompt tok/s |
|---|---|---|
| vLLM 0.19.0 | 25.0 | 176.3 |
| llama.cpp (GGUF variant) | 33.6 | 196.5 |