How to use from
SGLang
# Gated model: Login with a HF token with gated access permission
hf auth login
Install from pip and serve model
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
    --model-path "abanerjee10/DeepSeek-V2-Lite-INT8" \
    --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": "abanerjee10/DeepSeek-V2-Lite-INT8",
		"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 "abanerjee10/DeepSeek-V2-Lite-INT8" \
        --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": "abanerjee10/DeepSeek-V2-Lite-INT8",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

DeepSeek-V2-Lite-INT8 (block-wise GPTQ, modelopt)

INT8 post-training quantization of deepseek-ai/DeepSeek-V2-Lite using the Runaraai block-wise GPTQ pipeline.

This checkpoint is Stage 7 modelopt format — packed int8 weights + per-channel float32 scales, with quantization_config for vLLM / SGLang / TensorRT-LLM. (Stage 5 alone stores GPTQ-tuned values as BF16 on disk.)

Quantization

Setting Value
Method GPTQ, block-wise
Storage INT8 symmetric + per-channel weight_scale (modelopt)
Calibration C4, 512 samples × 4096 tokens
Parallel Hessian ON
Finished pack 2026-06-30 UTC

Quality (Δppl vs BF16 baseline, Stage 5/6 eval)

Dataset BF16 ppl INT8 ppl Δppl
WikiText-2 7.224 7.225 +0.001
C4 11.409 11.403 −0.006

Usage (vLLM)

from vllm import LLM
llm = LLM("abanerjee10/DeepSeek-V2-Lite-INT8", trust_remote_code=True)

Weights on disk are int8, not BF16 — expect ~half the weight memory vs the BF16 source.

Provenance

  • Quantized by: Aranya @ Runara
  • Pipeline: Stages 5 (GPTQ) + 7 (modelopt pack)
Downloads last month
-
Safetensors
Model size
16B params
Tensor type
BF16
·
I8
·
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for abanerjee10/DeepSeek-V2-Lite-INT8

Quantized
(25)
this model