在RV1126上跑yolov5的历程
说明
实现在yolov5训练出模型,然后在rv1126设备上运行。
操作过程简述
在YOLOV5中训练出 xxx.pt 模型
将pt转为onnx模型
将onnx转为rknn模型
部署rknn模型
环境特别说明
YOLOV5的运行环境是python3.8的,而rv1126的开发环境toolkit目前只支持到python 3.6的(linux),因此,需要两个python的环境
环境的管理采用conda
YOLOV5 环境 (python 3.8)
-
下载YOLOV5的代码: https://github.com/airockchip/yolov5 f022f01b2070dfd415c4eb8f33da2677afe8bfa2
-
修改 requirements.txt, 要打开 onnx coremltools
# export -------------------------------------- coremltools==4.0 onnx>=1.8.0 # scikit-learn==0.19.2 # for coreml quantization
-
安装requirements.txt (采用清华源,比较快)
pip3 install -r requirements.txt -i <https://pypi.tuna.tsinghua.edu.cn/simple>
-
训练出 pt 文件
# 以训练 coco128 为例 python3.8 train.py --img 640 --batch 16 --epochs 5 --device cpu --data ./data/coco128.yaml --cfg ./models/yolov5s.yaml
注:这里训练默认会以 yolov5s.pt 作模版训练的,如果是全新训练的话,需要改一下 --weights ‘’, 训练完成后,可先执行如下操作验证一下
python3 detect.py --source $1 --weight yolov5s.pt --conf-thres 0.3 --device cpu
- 转换为 onnx 文件
python3.8 models/export.py --weights yolov5s.pt --img 640 --batch 1
接下来就转到 rknn-toolkit的环境
rknn-toolkit 环境 (python 3.6)
-
环境安装
<https://github.com/rockchip-linux/rknn-toolkit>
-
onnx 转为 rknn
可参考 toolkit/example/onnx/yolov5/test.py 写一个转成rknn的即可 -
在RV1126 的部署(python版)
toolkit 是支持python 或者C API的, 这里部署 python 版的.
注意:由于 rv1126 版本是仅支持 RKNNLite ,因此需要将toolkit 的 example 改为 RKNNLite
问题
-
_pickle.UnpicklingError: STACK_GLOBAL requires str
在使用YOLOv5进行训练时,可能会出现_pickle.UnpicklingError: STACK_GLOBAL requires str 这样的错误,解决办法是,将数据集中的labels.cache文件删掉 -
RuntimeError: a view of a leaf Variable that requires grad is being used in an in-place
https://blog.csdn.net/weixin_44612221/article/details/115359866
找到在File "models\yolo.py"的line 145
将代码修改为:def _initialize_biases(self, cf=None): # initialize biases into Detect(), cf is class frequency # cf = torch.bincount[torch.tensor(np.concatenate(dataset.labels, 0](:, 0)).long(), minlength=nc) + 1. m = self.model[-1] # Detect() module for mi, s in zip(m.m, m.stride): # from b = mi.bias.view(m.na, -1) # conv.bias(255) to (3,85) with torch.no_grad(): b[:, 4] += math.log(8 / (640 / s) ** 2) # obj (8 objects per 640 image) b[:, 5:] += math.log(0.6 / (m.nc - 0.99)) if cf is None else torch.log(cf / cf.sum()) # cls mi.bias = torch.nn.Parameter(b.view(-1), requires_grad=True)
-
AttributeError: ‘Upsample‘ object has no attribute ‘recompute_scale_factor
https://blog.csdn.net/weixin_43401024/article/details/124428432
1.点击报错行该路径,进入编辑页, upsampling.py 修改forward函数return F.interpolate(input, self.size, self.scale_factor, self.mode, self.align_corners)
- 分享
- 举报
-
浏览量:2036次2024-01-05 17:00:10
-
浏览量:1685次2024-01-18 18:05:38
-
浏览量:2901次2022-11-22 09:26:53
-
浏览量:3396次2022-11-22 09:58:36
-
浏览量:4103次2022-10-31 15:07:27
-
浏览量:3427次2022-11-22 10:37:11
-
浏览量:1165次2023-11-27 14:02:37
-
浏览量:1417次2024-02-23 17:41:04
-
浏览量:1563次2023-05-05 14:55:59
-
浏览量:1458次2024-01-05 16:46:11
-
浏览量:1515次2024-02-05 10:41:25
-
浏览量:1764次2024-01-22 17:46:51
-
浏览量:1236次2024-03-06 16:15:59
-
浏览量:960次2023-08-30 18:37:06
-
浏览量:1611次2023-12-29 17:51:55
-
浏览量:728次2024-01-02 09:46:50
-
浏览量:3980次2021-06-18 16:05:42
-
浏览量:2050次2023-07-20 13:30:05
-
浏览量:1247次2023-08-31 16:23:55
-
1篇
- 关于INTEL和我们的关系,科技媒体怎么看?
- rv1126 编译linux procps-ng 使用全功能top命令显示
- 瑞芯微RK3399深度适配麒麟/元心/技德系统,助力推动政企办公设备国产化
- 哟哟~切克闹!瑞芯微祝大家马年快乐!芯芯向荣!
- 安装rk1109/rk1126环境
- “不支持H.265的4K盒子是骗小白!”RK3288天敏D8+电视盒一元开抢!!
- 瑞芯微RK3566电子纸应用方案优势详解
- 瑞芯微Rockchip发布最新AIOT处理器——RK3536
- 【瑞福团-内购电视盒】天敏D8+友情价!限购10天~
- 瑞芯微RK1126平台编译zlib gpac 使用GPAC将H264 H265保存为MP4文件录像
-
广告/SPAM
-
恶意灌水
-
违规内容
-
文不对题
-
重复发帖
杨康
感谢您的打赏,如若您也想被打赏,可前往 发表专栏 哦~
举报类型
- 内容涉黄/赌/毒
- 内容侵权/抄袭
- 政治相关
- 涉嫌广告
- 侮辱谩骂
- 其他
详细说明