Views
No views yet
| Property | Value |
|---|---|
| Base Model | deepseek-ai/DeepSeek-R1-Distill-Llama-8B |
| Quantization Method | NVFP4 (2-bit weights + 4-bit scales) |
| Calibration Dataset | CNN/DailyMail |
| Calibration Samples | 512 |
| Tool | NVIDIA TensorRT Model Optimizer v0.35.0 |
| Export Format | Hugging Face |
1from tensorrt_llm import LLM
2
3llm = LLM(model="amer8/DeepSeek-R1-Distill-Llama-8B-NVFP4")
4output = llm.generate("Paris is great because")
5print(output)1trtllm-serve amer8/DeepSeek-R1-Distill-Llama-8B-NVFP4 \
2 --backend pytorch \
3 --port 8000