Views
No views yet

| Model | MMMU | MathVista |
|---|---|---|
| Proprietary Models | ||
| Claude-3.7-Sonnet | 75.0 | 66.8 |
| OpenAI-4o | 70.7 | 62.9 |
| Open-Source Models | ||
| InternVL3-78B | 72.2 | 72.2 |
| Qwen2.5-VL-72B | 70.3 | 74.8 |
| QvQ-Preview-72B | 70.3 | 71.4 |
| Skywork-R1V3 | 76.0 | 77.1 |
| Skywork-R1V3-AWQ | 66.7 | 70.5 |
1import os
2from vllm import LLM, SamplingParams
3from vllm.entrypoints.chat_utils import load_chat_template
4model_name = "Skywork/Skywork-R1V3-38B-AWQ" # or local path
5llm = LLM(model_name,
6 dtype='float16',
7 quantization="awq",
8 gpu_memory_utilization=0.9,
9 max_model_len=4096,
10 trust_remote_code=True,
11 )
12# Add your inference code here1MODEL_ID="Skywork/Skywork-R1V3-38B-AWQ" # or local path
2CUDA_VISIBLE_DEVICES=0 \
3 python -m vllm.entrypoints.openai.api_server \
4 --model $MODEL_ID \
5 --dtype float16 \
6 --quantization awq \
7 --port 23334 \
8 --max-model-len 12000 \
9 --gpu-memory-utilization 0.9 \
10 --trust-remote-code1import os
2from lmdeploy import pipeline, TurbomindEngineConfig, ChatTemplateConfig
3from lmdeploy.vl import load_image
4model_path = "Skywork/Skywork-R1V3-38B-AWQ" # or local path
5engine_config = TurbomindEngineConfig(cache_max_entry_count=0.75)
6chat_template_config = ChatTemplateConfig(model_name=model_path)
7pipe = pipeline(model_path,
8 backend_config=engine_config,
9 chat_template_config=chat_template_config,
10 )
11# Example: Multimodal inference
12image = load_image('table.jpg')
13response = pipe(('Describe this image?', image))
14print(response.text)1@misc{shen2025skyworkr1v3technicalreport,
2 title={Skywork-R1V3 Technical Report},
3 author={Wei Shen and Jiangbo Pei and Yi Peng and Xuchen Song and Yang Liu and Jian Peng and Haofeng Sun and Yunzhuo Hao and Peiyu Wang and Jianhao Zhang and Yahui Zhou},
4 year={2025},
5 eprint={2507.06167},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2507.06167},
9}