HuggingFace镜像/Qwen2.5-VL-7B-Instruct-quantized.w8a8
模型介绍文件和版本分析
下载使用量0

Qwen2.5-VL-7B-Instruct-quantized-w8a8

模型概述

  • 模型架构:Qwen/Qwen2.5-VL-7B-Instruct
    • 输入:文本/图像/视频
    • 输出:文本
  • 模型优化:
    • 权重量化:INT8
    • 激活量化:INT8
  • 发布日期:2025年2月24日
  • 版本:1.0
  • 模型开发者:Neural Magic

Qwen/Qwen2.5-VL-7B-Instruct的量化版本。

模型优化

本模型通过将Qwen/Qwen2.5-VL-7B-Instruct的权重量化为INT8数据类型获得,可使用vLLM >= 0.5.2进行推理。

部署

与vLLM配合使用

可使用vLLM后端高效部署本模型,示例如下。

from vllm.assets.image import ImageAsset
from vllm import LLM, SamplingParams

# prepare model
llm = LLM(
    model="neuralmagic/Qwen2.5-VL-7B-Instruct-quantized.w8a8",
    trust_remote_code=True,
    max_model_len=4096,
    max_num_seqs=2,
)

# prepare inputs
question = "What is the content of this image?"
inputs = {
    "prompt": f"<|user|>\n<|image_1|>\n{question}<|end|>\n<|assistant|>\n",
    "multi_modal_data": {
        "image": ImageAsset("cherry_blossom").pil_image.convert("RGB")
    },
}

# generate response
print("========== SAMPLE GENERATION ==============")
outputs = llm.generate(inputs, SamplingParams(temperature=0.2, max_tokens=64))
print(f"PROMPT  : {outputs[0].prompt}")
print(f"RESPONSE: {outputs[0].outputs[0].text}")
print("==========================================")

vLLM 还支持与 OpenAI 兼容的服务。有关更多详细信息,请参阅文档。

创建

该模型是使用 llm-compressor 创建的,方法是运行下面的代码片段,将其作为多模态公告博客的一部分。

模型创建代码
import base64
from io import BytesIO
import torch
from datasets import load_dataset
from qwen_vl_utils import process_vision_info
from transformers import AutoProcessor
from llmcompressor.modifiers.quantization import GPTQModifier
from llmcompressor.transformers import oneshot
from llmcompressor.transformers.tracing import (
    TraceableQwen2_5_VLForConditionalGeneration,
)

# Load model.
model_id = "Qwen/Qwen2.5-VL-7B-Instruct"
model = TraceableQwen2_5_VLForConditionalGeneration.from_pretrained(
    model_id,
    device_map="auto",
    torch_dtype="auto",
)
processor = AutoProcessor.from_pretrained(model_id, trust_remote_code=True)

# Oneshot arguments
DATASET_ID = "lmms-lab/flickr30k"
DATASET_SPLIT = {"calibration": "test[:512]"}
NUM_CALIBRATION_SAMPLES = 512
MAX_SEQUENCE_LENGTH = 2048

# Load dataset and preprocess.
ds = load_dataset(DATASET_ID, split=DATASET_SPLIT)
ds = ds.shuffle(seed=42)

dampening_frac=0.01

# Apply chat template and tokenize inputs.
def preprocess_and_tokenize(example):
    # preprocess
    buffered = BytesIO()
    example["image"].save(buffered, format="PNG")
    encoded_image = base64.b64encode(buffered.getvalue())
    encoded_image_text = encoded_image.decode("utf-8")
    base64_qwen = f"data:image;base64,{encoded_image_text}"
    messages = [
        {
            "role": "user",
            "content": [
                {"type": "image", "image": base64_qwen},
                {"type": "text", "text": "What does the image show?"},
            ],
        }
    ]
    text = processor.apply_chat_template(
        messages, tokenize=False, add_generation_prompt=True
    )
    image_inputs, video_inputs = process_vision_info(messages)

    # tokenize
    return processor(
        text=[text],
        images=image_inputs,
        videos=video_inputs,
        padding=False,
        max_length=MAX_SEQUENCE_LENGTH,
        truncation=True,
    )

ds = ds.map(preprocess_and_tokenize, remove_columns=ds["calibration"].column_names)

# Define a oneshot data collator for multimodal inputs.
def data_collator(batch):
    assert len(batch) == 1
    return {key: torch.tensor(value) for key, value in batch[0].items()}


# Recipe
recipe = [
    GPTQModifier(
        targets="Linear",
        scheme="W8A8",
        sequential_targets=["Qwen2_5_VLDecoderLayer"],
        ignore=["lm_head", "re:visual.*"],
    ),
]

SAVE_DIR==f"{model_id.split('/')[1]}-quantized.w8a8"

# Perform oneshot
oneshot(
    model=model,
    tokenizer=model_id,
    dataset=ds,
    recipe=recipe,
    max_seq_length=MAX_SEQUENCE_LENGTH,
    num_calibration_samples=NUM_CALIBRATION_SAMPLES,
    trust_remote_code_model=True,
    data_collator=data_collator,
    output_dir=SAVE_DIR
)

评估

该模型针对视觉相关任务使用 mistral-evals 进行评估,针对选定的文本基准使用 lm_evaluation_harness 进行评估。评估通过以下命令执行:

评估命令

视觉任务

  • vqav2
  • docvqa
  • mathvista
  • mmmu
  • chartqa
vllm serve neuralmagic/pixtral-12b-quantized.w8a8 --tensor_parallel_size 1 --max_model_len 25000 --trust_remote_code --max_num_seqs 8 --gpu_memory_utilization 0.9 --dtype float16 --limit_mm_per_prompt image=7

python -m eval.run eval_vllm \
        --model_name neuralmagic/pixtral-12b-quantized.w8a8 \
        --url http://0.0.0.0:8000 \
        --output_dir ~/tmp \
        --eval_name <vision_task_name>

基于文本的任务

多任务语言理解(MMLU)

lm_eval \
  --model vllm \
  --model_args pretrained="<model_name>",dtype=auto,add_bos_token=True,max_model_len=4096,tensor_parallel_size=<n>,gpu_memory_utilization=0.8,enable_chunked_prefill=True,trust_remote_code=True \
  --tasks mmlu \
  --num_fewshot 5 \
  --batch_size auto \
  --output_path output_dir

多语言数学应用题

lm_eval \
  --model vllm \
  --model_args pretrained="<model_name>",dtype=auto,max_model_len=4096,max_gen_toks=2048,max_num_seqs=128,tensor_parallel_size=<n>,gpu_memory_utilization=0.9 \
  --tasks mgsm_cot_native \
  --apply_chat_template \
  --num_fewshot 0 \
  --batch_size auto \
  --output_path output_dir

准确性

类别指标Qwen/Qwen2.5-VL-7B-InstructQwen2.5-VL-7B-Instruct-quantized.w8a8恢复率 (%)
视觉MMMU (验证集, CoT)
explicit_prompt_relaxed_correctness
52.0052.33100.63%
VQAv2 (验证集)
vqa_match
75.5975.4699.83%
DocVQA (验证集)
anls
94.2794.0999.81%
ChartQA (测试集, CoT)
anywhere_in_answer_relaxed_correctness
86.4486.1699.68%
Mathvista (测试集mini, CoT)
explicit_prompt_relaxed_correctness
69.4770.47101.44%
平均得分75.9575.9099.93%
文本MGSM (CoT)56.3855.1397.78%
MMLU (5-shot)71.0970.5799.27%

推理性能

该模型在单流部署中可实现高达1.56倍的加速,在多流部署中可实现1.5倍的加速,具体取决于硬件和使用场景。 以下性能基准测试是使用vLLM版本0.7.2和GuideLLM进行的。

基准测试命令 ``` guidellm --model neuralmagic/Qwen2.5-VL-7B-Instruct-quantized.w8a8 --target "http://localhost:8000/v1" --data-type emulated --data prompt_tokens=,generated_tokens=,images=,width=,height= --max seconds 120 --backend aiohttp_server ```

单流性能(使用 vLLM 0.7.2 版本测量)

文档视觉问答
1680宽 x 2240高
64/128
视觉推理
640宽 x 480高
128/128
图像描述
480宽 x 360高
0/128
硬件模型平均成本降低延迟(秒)每美元查询数延迟(秒)每美元查询数延迟(秒)每美元查询数
A6000x1Qwen/Qwen2.5-VL-7B-Instruct4.99123.213863.11431
neuralmagic/Qwen2.5-VL-7B-Instruct-quantized.w8a81.503.612482.121632.02237
neuralmagic/Qwen2.5-VL-7B-Instruct-quantized.w4a162.053.313511.432521.43321
A100x1Qwen/Qwen2.5-VL-7B-Instruct2.87071.711621.71198
neuralmagic/Qwen2.5-VL-7B-Instruct-quantized.w8a81.242.48511.414541.31512
neuralmagic/Qwen2.5-VL-7B-Instruct-quantized.w4a161.492.29121.117911.01950
H100x1Qwen/Qwen2.5-VL-7B-Instruct2.05571.29191.2941
neuralmagic/Qwen2.5-VL-7B-Instruct-FP8-Dynamic1.281.66980.911810.91219
neuralmagic/Qwen2.5-VL-7B-Instruct-quantized.w4a161.281.66860.911910.91228

用例配置文件:图像尺寸(宽x高)/提示词 tokens /生成 tokens

QPD:每美元查询数,基于 Lambda Labs 的按需成本(2025年2月18日观察数据)。

多流异步性能(使用 vLLM 0.7.2 版本测量)

文档视觉问答
1680宽 x 2240高
64/128
视觉推理
640宽 x 480高
128/128
图像描述
480宽 x 360高
0/128
硬件模型平均成本降低最大吞吐量(QPS)每美元查询数最大吞吐量(QPS)每美元查询数最大吞吐量(QPS)每美元查询数
A6000x1Qwen/Qwen2.5-VL-7B-Instruct0.418371.568461.77638
neuralmagic/Qwen2.5-VL-7B-Instruct-quantized.w8a81.410.522972.3101372.511472
neuralmagic/Qwen2.5-VL-7B-Instruct-quantized.w4a161.600.418282.7122543.415477
A100x1Qwen/Qwen2.5-VL-7B-Instruct0.713472.652213.06122
neuralmagic/Qwen2.5-VL-7B-Instruct-quantized.w8a81.270.816393.468513.97918
neuralmagic/Qwen2.5-VL-7B-Instruct-quantized.w4a161.210.713143.059834.69206
H100x1Qwen/Qwen2.5-VL-7B-Instruct0.99693.133583.33615
neuralmagic/Qwen2.5-VL-7B-Instruct-FP8-Dynamic1.291.213313.841094.24598
neuralmagic/Qwen2.5-VL-7B-Instruct-quantized.w4a161.281.212983.841904.24573

**用例配置:图像尺寸(宽x高)/提示词 tokens/生成 tokens

**QPS:每秒查询数。

**QPD:每美元查询数,基于 Lambda Labs 的按需成本(2025年2月18日观测数据)。