随笔分类 - yoloV5
摘要:conf_thres Confidence Threshold,置信度阈值。 只显示预测概率超过conf_thres的预测结果。 想让YOLO只标记可能性高的地方,就把这个参数提高。 iou_thres Intersect over Union Threshold,交并比阈值。 IOU值:预测框大小
阅读全文
RuntimeError: DataLoader worker (pid 463) is killed by signal: Bus error. It is possible that datalo
摘要:yoloV5在镜像中训练时出现了线面的错误,是因为docker容器分配的shm不足,所以需要手动设定shm size的小。 RuntimeError: DataLoader worker (pid 463) is killed by signal: Bus error. It is possible
阅读全文
摘要:https://blog.csdn.net/IT_charge/article/details/119208680
阅读全文
摘要:一、启动训练的命令 python -m torch.distributed.launch --nproc_per_node=NUM_GPUS_YOU_HAVE train.py 其中torch.distributed.launch表示以分布式的方式启动训练,--nproc_per_node指定一共就
阅读全文