Text Generation
Transformers
Safetensors
deepseek_v2
deepseek
mla
Mixture of Experts
nvfp4
fp4
quantized
vllm
conversational
custom_code
text-generation-inference
8-bit precision
compressed-tensors
Instructions to use carlyou/DeepSeek-V2-Lite-NVFP4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use carlyou/DeepSeek-V2-Lite-NVFP4 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="carlyou/DeepSeek-V2-Lite-NVFP4", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("carlyou/DeepSeek-V2-Lite-NVFP4", trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained("carlyou/DeepSeek-V2-Lite-NVFP4", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use carlyou/DeepSeek-V2-Lite-NVFP4 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "carlyou/DeepSeek-V2-Lite-NVFP4" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "carlyou/DeepSeek-V2-Lite-NVFP4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/carlyou/DeepSeek-V2-Lite-NVFP4
- SGLang
How to use carlyou/DeepSeek-V2-Lite-NVFP4 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "carlyou/DeepSeek-V2-Lite-NVFP4" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "carlyou/DeepSeek-V2-Lite-NVFP4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "carlyou/DeepSeek-V2-Lite-NVFP4" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "carlyou/DeepSeek-V2-Lite-NVFP4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use carlyou/DeepSeek-V2-Lite-NVFP4 with Docker Model Runner:
docker model run hf.co/carlyou/DeepSeek-V2-Lite-NVFP4
DeepSeek-V2-Lite-NVFP4
NVFP4 (W4A4) quantized version of deepseek-ai/DeepSeek-V2-Lite, quantized using llm-compressor.
Model Details
| Base model | deepseek-ai/DeepSeek-V2-Lite (15.7B params) |
| Architecture | DeepseekV2ForCausalLM (MLA attention + MoE) |
| Quantization | NVFP4 — 4-bit floating point weights and activations |
| Format | compressed-tensors (nvfp4-pack-quantized) |
| Size | ~8.9 GB (3.5x compression from BF16) |
| Group size | 16 |
| Scale dtype | float8_e4m3fn |
Quantization Details
- Method: Post-training quantization (PTQ) via
llm-compressoroneshot - Scheme: NVFP4 — weights and input activations quantized to 4-bit float
- Calibration: 20 samples from HuggingFaceFW/fineweb-edu (sample-10BT)
- Ignored layers:
lm_head(kept in original precision) - Scales: per-tensor global scale (FP32) + per-group local scale (FP8, group size 16)
Usage with vLLM
Requires a GPU with NVFP4 tensor core support (NVIDIA Blackwell, SM100+).
vllm serve carlyou/DeepSeek-V2-Lite-NVFP4 \
--trust-remote-code \
--max-model-len 2048
from vllm import LLM, SamplingParams
llm = LLM(
model="carlyou/DeepSeek-V2-Lite-NVFP4",
trust_remote_code=True,
max_model_len=2048,
)
output = llm.generate("Hello, world!", SamplingParams(max_tokens=128))
print(output[0].outputs[0].text)
Intended Use
This model is primarily intended for benchmarking and testing NVFP4 quantization support in vLLM, particularly MLA attention + quantization fusion patterns on Blackwell GPUs.
Limitations
- Requires Blackwell GPU (SM100+) for FP4 tensor core acceleration
- Quantization may degrade output quality compared to FP8 or BF16 versions
- Not evaluated on standard benchmarks — use for testing/benchmarking only
- Downloads last month
- 14
Model tree for carlyou/DeepSeek-V2-Lite-NVFP4
Base model
deepseek-ai/DeepSeek-V2-Lite