DeepSeek-R1-Distill-Qwen-7B-FP8-dynamic

Model Overview

  • Model Architecture: Qwen2ForCausalLM
    • Input: Text
    • Output: Text
  • Model Optimizations:
    • Weight quantization: FP8
    • Activation quantization: FP8
  • Release Date: 2/5/2025
  • Version: 1.0
  • Model Developers: Neural Magic

Quantized version of DeepSeek-R1-Distill-Qwen-7B.

Model Optimizations

This model was obtained by quantizing the weights and activations of DeepSeek-R1-Distill-Qwen-7B to FP8 data type. This optimization reduces the number of bits per parameter from 16 to 8, reducing the disk size and GPU memory requirements by approximately 50%.

Only the weights and activations of the linear operators within transformers blocks are quantized. Weights are quantized using a symmetric per-channel scheme, whereas quantizations are quantized using a symmetric per-token scheme. LLM Compressor is used for quantization.

Use with vLLM

This model can be deployed efficiently using the vLLM backend, as shown in the example below.

from transformers import AutoTokenizer
from vllm import LLM, SamplingParams

number_gpus = 1
model_name = "neuralmagic/DeepSeek-R1-Distill-Qwen-7B-dynamic"

tokenizer = AutoTokenizer.from_pretrained(model_name)
sampling_params = SamplingParams(temperature=0.6, max_tokens=256, stop_token_ids=[tokenizer.eos_token_id])
llm = LLM(model=model_name, tensor_parallel_size=number_gpus, trust_remote_code=True)

messages_list = [
    [{"role": "user", "content": "Who are you? Please respond in pirate speak!"}],
]

prompt_token_ids = [tokenizer.apply_chat_template(messages, add_generation_prompt=True) for messages in messages_list]

outputs = llm.generate(prompt_token_ids=prompt_token_ids, sampling_params=sampling_params)

generated_text = [output.outputs[0].text for output in outputs]
print(generated_text)

vLLM also supports OpenAI-compatible serving. See the documentation for more details.

Creation

This model was created with llm-compressor by running the code snippet below.

from transformers import AutoModelForCausalLM, AutoTokenizer
from llmcompressor.modifiers.quantization import QuantizationModifier
from llmcompressor.transformers import oneshot
import os

# Load model
model_stub = "deepseek-ai/DeepSeek-R1-Distill-Qwen-7B"
model_name = model_stub.split("/")[-1]

model = AutoModelForCausalLM.from_pretrained(
    model_stub,
    torch_dtype="auto",
)

tokenizer = AutoTokenizer.from_pretrained(model_stub)

# Configure the quantization algorithm and scheme
recipe = QuantizationModifier(
    targets="Linear",
    scheme="FP8_DYNAMIC",
    ignore=["lm_head"],
)

# Apply quantization
oneshot(
    model=model,
    recipe=recipe,
)

# Save to disk in compressed-tensors format
save_path = model_name + "-FP8-dynamic
model.save_pretrained(save_path)
tokenizer.save_pretrained(save_path)
print(f"Model and tokenizer saved to: {save_path}")

Evaluation

The model was evaluated on OpenLLM Leaderboard V1 and V2, using the following commands:

OpenLLM Leaderboard V1:

lm_eval \
  --model vllm \
  --model_args pretrained="neuralmagic/DeepSeek-R1-Distill-Qwen-7B-FP8-dynamic",dtype=auto,max_model_len=4096,tensor_parallel_size=1,enable_chunked_prefill=True \
  --tasks openllm \
  --write_out \
  --batch_size auto \
  --output_path output_dir \
  --show_config

OpenLLM Leaderboard V2:

lm_eval \
  --model vllm \
  --model_args pretrained="neuralmagic/DeepSeek-R1-Distill-Qwen-7B-FP8-dynamic",dtype=auto,max_model_len=4096,tensor_parallel_size=1,enable_chunked_prefill=True \
  --apply_chat_template \
  --fewshot_as_multiturn \
  --tasks leaderboard \
  --write_out \
  --batch_size auto \
  --output_path output_dir \
  --show_config

Accuracy

Category Metric deepseek-ai/DeepSeek-R1-Distill-Qwen-7B neuralmagic/DeepSeek-R1-Distill-Qwen-7B-FP8-dynamic Recovery
OpenLLM V1 ARC-Challenge (Acc-Norm, 25-shot) 50.51 50.51 100.0%
GSM8K (Strict-Match, 5-shot) 78.62 79.83 101.5%
HellaSwag (Acc-Norm, 10-shot) 61.90 61.62 99.6%
MMLU (Acc, 5-shot) 54.19 53.76 99.2%
TruthfulQA (MC2, 0-shot) 45.55 46.14 101.3%
Winogrande (Acc, 5-shot) 61.56 60.54 98.3%
Average Score 58.72 58.73 100.0%
OpenLLM V2 IFEval (Inst Level Strict Acc, 0-shot) 39.67 39.77 100.2%
BBH (Acc-Norm, 3-shot) 39.60 39.33 99.3%
Math-Hard (Exact-Match, 4-shot) 0.00 0.00 ---
GPQA (Acc-Norm, 0-shot) 25.24 24.97 98.6%
MUSR (Acc-Norm, 0-shot) 38.09 37.82 99.3%
MMLU-Pro (Acc, 5-shot) 19.53 18.53 94.5%
Average Score 27.02 26.74 99.0%
Coding HumanEval (pass@1) 40.80 39.50 96.8%
HumanEval (pass@10) 64.40 62.10 96.4%
HumanEval+ (pass@10) 38.50 37.20 96.6%
HumanEval+ (pass@10) 60.40 59.30 98.2%
Downloads last month
62
Safetensors
Model size
7.62B params
Tensor type
BF16
·
F8_E4M3
·
Inference Providers NEW
This model is not currently available via any of the supported third-party Inference Providers, and the model is not deployed on the HF Inference API.

Model tree for neuralmagic/DeepSeek-R1-Distill-Qwen-7B-FP8-dynamic

Quantized
(93)
this model

Collection including neuralmagic/DeepSeek-R1-Distill-Qwen-7B-FP8-dynamic