1 Star 23 Fork 14

CV_Lab / Streamlit-YOLOv5-Modle2X

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
yolov5_model_p5_p6_all.sh 414 Bytes
一键复制 编辑 原始数据 按行查看 历史
代码阿尔法 提交于 2022-07-13 14:57 . app update
# YOLOv5 P5 P6模型下载脚本
# 创建人:曾逸夫
# 创建时间:2022-06-01
cd ./models
yolov5_version="v6.1"
wget_download="wget -c -t 0 https://github.com/ultralytics/yolov5/releases/download/"
model_list=(yolov5n yolov5s yolov5m yolov5l yolov5x yolov5n6 yolov5s6 yolov5m6 yolov5l6 yolov5x6)
for i in ${model_list[*]}; do
$wget_download$yolov5_version$"/"$i$".pt"
echo $i"模型下载成功!"
done
Python
1
https://gitee.com/CV_Lab/streamlit_yolov5_modle2x.git
git@gitee.com:CV_Lab/streamlit_yolov5_modle2x.git
CV_Lab
streamlit_yolov5_modle2x
Streamlit-YOLOv5-Modle2X
master

搜索帮助