Welcome to the Skywork-R1V repository! Here, you'll find the model weights and inference code for our state-of-the-art open-sourced multimodal reasoning model, enabling advanced visual and text thinking.
April 24, 2025: We released Skywork-R1V2, a state-of-the-art, open-source multimodal reasoning model that achieves leading performance across multiple vision-language benchmarks.[🤗 Skywork-R1V2-38B][📖R1V2 Report] [ArXiv (update in progress)]
April 9, 2025: Our technical report is currently available on arxiv: [Skywork-R1V: Pioneering Multimodal Reasoning with CoT].
April 1, 2025: Skywork-R1V supports inference with [vLLM], On 4×L20Y GPUs, vLLM generates 1k tokens in ~12.3s, at least 5× faster than transformers.
Mar 26, 2025: We released awq quantized version of Skywork R1V[🤗 Skywork-R1V-38B-AWQ], supporting single-card (above 30GB) inference.
Mar 18, 2025: We are thrilled to introduce Skywork R1V, the first industry open-sourced multimodal reasoning model with advanced visual chain-of-thought capabilities, pushing the boundaries of AI-driven vision and logical inference! 🚀
Skywork-R1V2-38B demonstrates state-of-the-art performance on both text and multimodal reasoning tasks.
Model | Text Reasoning (pass@1 or %) | Multimodal Reasoning (%) | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
AIME24 | LiveCodebench | liveBench | IFEVAL | BFCL | MMMU(val) | MathVista(mini) | MathVision(mini) | OlympiadBench | mmmu-pro | |
Skywork-R1V2-38B | 78.9 | 63.6 | 73.2 | 82.9 | 66.3 | 73.6 | 74.0 | 49.0 | 62.6 | 52.0 |
OpenAI-4o | 74.6 | 9.3 | 49.9 | — | — | 69.1 | 63.8 | 58.0 | — | — |
Claude 3.5 Sonnet | 16.0 | — | 65.0 | — | — | 66.4 | 65.3 | — | — | — |
Kimi k1.5 | 77.5 | — | — | — | — | 70.0 | 74.9 | — | — | — |
Qwen2.5-VL-72B | — | — | — | — | — | 70.2 | 74.8 | 38.1 | 40.4 | — |
InternVL3-38B | — | — | — | — | — | 70.1 | 75.1 | 34.2 | - | — |
git clone https://github.com/SkyworkAI/Skywork-R1V.git
cd skywork-r1v/inference
# For Transformers
conda create -n r1-v python=3.10 && conda activate r1-v
bash setup.sh
# For vLLM
conda create -n r1v-vllm python=3.10 && conda activate r1v-vllm
pip install -U vllm
CUDA_VISIBLE_DEVICES="0,1" python inference_with_transformers.py \
--model_path path \
--image_paths image1_path \
--question "your question"
python inference_with_vllm.py \
--model_path path \
--image_paths image1_path image2_path \
--question "your question" \
--tensor_parallel_size 4
This code repository is licensed under the MIT License. ✅ Commercial use permitted
✅ Modification allowed
✅ Distribution allowed
❌ No liability
If you use Skywork-R1V in your research, please cite:
@misc{chris2025skyworkr1v2multimodalhybrid,
title={Skywork R1V2: Multimodal Hybrid Reinforcement Learning for Reasoning},
author={Chris and Yichen Wei and Yi Peng and Xiaokun Wang and Weijie Qiu and Wei Shen and Tianyidan Xie and Jiangbo Pei and Jianhao Zhang and Yunzhuo Hao and Xuchen Song and Yang Liu and Yahui Zhou},
year={2025},
eprint={2504.16656},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2504.16656},
}
@misc{peng2025skyworkr1vpioneeringmultimodal,
title={Skywork R1V: Pioneering Multimodal Reasoning with Chain-of-Thought},
author={Yi Peng and Chris and Xiaokun Wang and Yichen Wei and Jiangbo Pei and Weijie Qiu and Ai Jian and Yunzhuo Hao and Jiachun Pan and Tianyidan Xie and Li Ge and Rongxian Zhuang and Xuchen Song and Yang Liu and Yahui Zhou},
year={2025},
eprint={2504.05599},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2504.05599},
}