Image-Text-to-Text
Transformers
Safetensors
English
qwen2_5_vl
multimodal
conversational
text-generation-inference
4-bit precision
awq
Instructions to use Qwen/Qwen2.5-VL-72B-Instruct-AWQ with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Qwen/Qwen2.5-VL-72B-Instruct-AWQ with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="Qwen/Qwen2.5-VL-72B-Instruct-AWQ") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForImageTextToText processor = AutoProcessor.from_pretrained("Qwen/Qwen2.5-VL-72B-Instruct-AWQ") model = AutoModelForImageTextToText.from_pretrained("Qwen/Qwen2.5-VL-72B-Instruct-AWQ") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.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(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Qwen/Qwen2.5-VL-72B-Instruct-AWQ with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Qwen/Qwen2.5-VL-72B-Instruct-AWQ" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Qwen/Qwen2.5-VL-72B-Instruct-AWQ", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/Qwen/Qwen2.5-VL-72B-Instruct-AWQ
- SGLang
How to use Qwen/Qwen2.5-VL-72B-Instruct-AWQ 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 "Qwen/Qwen2.5-VL-72B-Instruct-AWQ" \ --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": "Qwen/Qwen2.5-VL-72B-Instruct-AWQ", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'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 "Qwen/Qwen2.5-VL-72B-Instruct-AWQ" \ --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": "Qwen/Qwen2.5-VL-72B-Instruct-AWQ", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use Qwen/Qwen2.5-VL-72B-Instruct-AWQ with Docker Model Runner:
docker model run hf.co/Qwen/Qwen2.5-VL-72B-Instruct-AWQ
I cannot load the model in textgen
#19 opened 9 days ago
by
Sewblon
base models?
#18 opened 4 months ago
by
sofluff
RuntimeError: Cannot load `awq` weight, make sure the model is already quantized
1
#17 opened about 1 year ago
by
markba
RuntimeError: probability tensor contains either inf, nan or element < 0
#16 opened about 1 year ago
by
mstachow
Update README.md
#15 opened about 1 year ago
by
megladagon
sglang的chat-template什么时候能设置v2.5-vl
#14 opened about 1 year ago
by
kevinBusinessGenrator
修改视觉模型的tokens_per_second没有生效
#13 opened about 1 year ago
by
kevinBusinessGenrator
ImportError: cannot import name 'shard_checkpoint' from 'transformers.modeling_utils
➕ 1
3
#12 opened about 1 year ago
by
rj979797
Change the image_processor_type
#11 opened about 1 year ago
by
SorenDreano
如何提高推理速率
#10 opened about 1 year ago
by
kevinBusinessGenrator
我们现在使用的图片token数量远没有达到32768个,如何能够降低这个数量
1
#9 opened about 1 year ago
by
kevinBusinessGenrator
VLLM部署报错
3
#8 opened over 1 year ago
by
classdemo
intermediate_size改动
#6 opened over 1 year ago
by
iMountTai
is this bug? "image_processor_type": "Qwen2_5_VLImageProcessor",
5
#5 opened over 1 year ago
by
artheru
How to speed up inference?
1
#4 opened over 1 year ago
by
vegasscientific
Add link to paper in model card
#3 opened over 1 year ago
by
nielsr
AWQ量化版损失有多大?可以再进行SFT微调吗?
👍 2
#1 opened over 1 year ago
by
HediZhao