摘要: Model Build_Model : params: 255.772284M Model Build_Model : intermedite variables: 0.176400 M (without backward) Model Build_Model : intermedite varia 阅读全文
posted @ 2021-05-24 23:14 下着雨 阅读(535) 评论(0) 推荐(0) 编辑
摘要: (VOC dataset): 1 python get_gt_txt.py #得到ground truth 2 python get_map.py #得到mAP,P-R曲线图 1 python get_gt_txt.py #得到ground truth 替换为绝对路径 (俩处) image_ids 阅读全文
posted @ 2021-05-24 22:08 下着雨 阅读(577) 评论(0) 推荐(0) 编辑
摘要: 1 运行eval_voc.py 出现 Traceback (most recent call last): File "C:/Users/gja/Downloads/YOLOv4-pytorch-master/YOLOv4-pytorch-master/eval_voc.py", line 148, 阅读全文
posted @ 2021-05-24 17:22 下着雨 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 1 train 结束 done,生成多个文件。 结果 : [2021-05-20 21:37:14,552]-[train.py line:279]: Validate [2021-05-20 21:37:14,552]-[train.py line:281]:val img size is 416 阅读全文
posted @ 2021-05-20 21:53 下着雨 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 1. os.path.dirname(__file__)、os.path.abspath(__file__)、os.path.join()使用 os.path.abspath(file)返回代码文件的所在的目录,不带文件名;os.path.dirname(path)返回path目录或者绝对路径的上一 阅读全文
posted @ 2021-05-20 16:03 下着雨 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 1设置 config, train 1)MODEL_TYPE = { "TYPE": "YOLOv4" } # YOLO type:YOLOv4, Mobilenet-YOLOv4 or Mobilenetv3-YOLOv4 CONV_TYPE = {"TYPE": "GENERAL"} # con 阅读全文
posted @ 2021-05-18 09:56 下着雨 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 1自己数据集训练,出现 结果 :mAP=0,且train之后没有best.pt生成 原因: 直接:mAP=0导致的没有best.pt的生成。 根本:调整了训练轮数,默认的mobile120轮,CSP50轮; MObile的在60轮以后才会保存模型,CSP30轮以后才会保存模型。路径尽量不要用中文。 阅读全文
posted @ 2021-05-18 08:52 下着雨 阅读(68) 评论(0) 推荐(0) 编辑
摘要: # 成功使得filename与文件名一致 import os # input_dir='./xml' input_dir = r"D:/xml-test/4" # xml路径 import xml.etree.ElementTree as ET for filename in os.listdir( 阅读全文
posted @ 2021-05-11 20:14 下着雨 阅读(292) 评论(0) 推荐(0) 编辑
摘要: # 修改xml文件的存放路径信息 成功 import xml.dom.minidom import os path = 'D:/xml-test/4' # xml文件存放路径 sv_path = 'D:/xml-test/annotation' # 修改后的xml文件存放路径 files = os. 阅读全文
posted @ 2021-05-11 20:13 下着雨 阅读(238) 评论(0) 推荐(0) 编辑
摘要: import os path = "D:/xml-test/1/" # 目标路径 filename_list = os.listdir(path) # 扫描目标路径的文件,将文件名存入列表 t = 0 a = 900 # 文件名的起始编号 for i in filename_list: used_n 阅读全文
posted @ 2021-05-11 20:11 下着雨 阅读(54) 评论(0) 推荐(0) 编辑