摘要: 一、 需要把YOLOv3训练的结果的各个值记录到Excel中,实现python脚本如下: import re,xlwt f = open("epoch.txt") lines = f.readlines() #新建工作簿 workbook = xlwt.Workbook(encoding='utf- 阅读全文
posted @ 2021-12-23 01:03 arun_python 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 一、 在写论文时需要统计YOLOv3训练的数据集的数据,x轴为Epoch数量,左边Y轴为TrainingLoss,右边Y轴统计mAP值,使用matplotlib实现如下: # Adding a Y-Axis Label to the Secondary Y-Axis in Matplotlib # 阅读全文
posted @ 2021-12-23 00:04 arun_python 阅读(815) 评论(0) 推荐(0) 编辑