没有合适的资源?快使用搜索试试~ 我知道了~
YOLOV3-损失函数及其源代码理解
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
24 下载量 121 浏览量
2021-01-06
23:44:53
上传
评论 2
收藏 75KB PDF 举报
温馨提示
YOLOV3-损失函数及其源代码理解(yolo_layer.c) 讲得好 https://github.com/AlexeyAB/darknet/issues/821 x,y,w,h 损失 原版的bbox损失为MSE,其后又GIOU,DIOU… delta即为求完损失的梯度 公式对应图 思路及具体求法: https://github.com/AlexeyAB/darknet/issues/2287 https://blog.csdn.net/qq_34199326/article/details/84109828 https://blog.csdn.net/qq_34199326/arti
资源推荐
资源详情
资源评论
YOLOV3-损失函数及其源代码理解损失函数及其源代码理解
YOLOV3-损失函数及其源代码理解(损失函数及其源代码理解(yolo_layer.c))
讲得好
https://github.com/AlexeyAB/darknet/issues/821
x,y,w,h 损失损失
原版的bbox损失为MSE,其后又GIOU,DIOU…
delta即为求完损失的梯度
公式对应图
思路及具体求法:
https://github.com/AlexeyAB/darknet/issues/2287
https://blog.csdn.net/qq_34199326/article/details/84109828
https://blog.csdn.net/qq_34199326/article/details/84109828 “>
float delta_yolo_box(box truth, float *x, float *biases, int n, int index, int i, int j, int lw, int lh, int w, int h, float *delta, float scale, int stride)
{
box pred = get_yolo_box(x, biases, n, index, i, j, lw, lh, w, h, stride);
float iou = box_iou(pred, truth);
float tx = (truth.x*lw - i);
float ty = (truth.y*lh - j);
float tw = log(truth.w*w / biases[2*n]);
float th = log(truth.h*h / biases[2*n + 1]);
scale = 2 - groundtruth.w * groundtruth.h //关于这个为什么相等的问题,总得来说就是为了小目标delta可以大一些。可以参看
https://github.com/AlexeyAB/darknet/issues/1532
delta[index + 0*stride] = scale * (tx - x[index + 0*stride]);
delta[index + 1*stride] = scale * (ty - x[index + 1*stride]);
delta[index + 2*stride] = scale * (tw - x[index + 2*stride]);
delta[index + 3*stride] = scale * (th - x[index + 3*stride]);
return iou;
}
类别损失类别损失
讲的好讲的好
https://github.com/AlexeyAB/darknet/issues/1695
置信度损失置信度损失
资源评论
weixin_38614268
- 粉丝: 6
- 资源: 950
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功