视频讲解:Qwen2.5-VL视觉大语言模型复现过程,没碰到什么坑_哔哩哔哩_bilibili
Qwen2.5-VL视觉大语言模型复现过程,没碰到什么坑
今天复现下Qwen2.5-VL玩玩
https://github.com/QwenLM/Qwen2.5-VL
创建conda环境,实测22.04,python3.10没什么依赖或者冲突的问题出现
conda create -n qwen2.5-vlconda activate qwen2.5-vl
下载源码,安装相关依赖
git clone https://github.com/QwenLM/Qwen2.5-VL
cd Qwen2.5-VL
pip install -r requirements_web_demo.txt
运行demo,有四个版本3B,7B,32B,72B,3B的比较小,但比较傻,下载比较快
python3 web_demo_mm.py --checkpoint-path "Qwen/Qwen2.5-VL-3B-Instruct"
python3 web_demo_mm.py --checkpoint-path "Qwen/Qwen2.5-VL-7B-Instruct"
python3 web_demo_mm.py --checkpoint-path "Qwen/Qwen2.5-VL-32B-Instruct"
python3 web_demo_mm.py --checkpoint-path "Qwen/Qwen2.5-VL-72B-Instruct"
第一次加载会先下载model,大概7个多G
实际运行起来,通过gradio起了一个Web
实际的界面