上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 99 下一页
摘要: 需解决问题: 1.离散点进行平滑曲线画法 https://blog.csdn.net/cdqn10086/article/details/70143616 2.把auc计算的结果画到图片上,使用plt.text,即文本显示 官网给的方法:https://matplotlib.org/users/te 阅读全文
posted @ 2018-07-06 14:19 有梦就要去实现他 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 解决办法: https://stackoverflow.com/questions/37604289/tkinter-tclerror-no-display-name-and-no-display-environment-variable 阅读全文
posted @ 2018-07-06 14:05 有梦就要去实现他 阅读(1515) 评论(0) 推荐(0) 编辑
摘要: import time start = time.clock() end = time.clock() consume_time = end - start 阅读全文
posted @ 2018-07-03 15:20 有梦就要去实现他 阅读(843) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/shuzfan/article/details/71036040 github:https://github.com/bharatsingh430/soft-nms,代码在/lib/nms/下 解决的问题:就是两个框iou有一定重叠且两个框的得分都很高(同 阅读全文
posted @ 2018-07-03 11:13 有梦就要去实现他 阅读(2550) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/36095768 我的推断,第二第三阶段应该不是把所有anchor进行bounding box regression,然后再选取当前条件下的所有roi,而是第一阶段选取512个roi,然后把在第一阶段匹配好的roi送到第二、三阶段 这段代码就 阅读全文
posted @ 2018-07-02 12:06 有梦就要去实现他 阅读(1228) 评论(0) 推荐(0) 编辑
摘要: refinedet只预测4个层,并且只有conv6_1、conv6_2,没有ssd中的conv7、8、9 refinedet的4个层都只有1个aspect ratio和1个min_size,所以每层每个点只有3个anchor,arm中做location的conv4_3_norm_mbox_loc等层 阅读全文
posted @ 2018-06-27 15:37 有梦就要去实现他 阅读(1730) 评论(0) 推荐(0) 编辑
摘要: 总结说来prior_box层只完成了一个提取anchor的过程,其他与gt的match,筛选正负样本比例都是在multibox_loss_layer完成的 http://www.360doc.com/content/17/0810/10/10408243_678091430.shtml 1.以mob 阅读全文
posted @ 2018-06-26 20:46 有梦就要去实现他 阅读(853) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/5195165bbd06 1.step_w、step_h其实就相当于faster中的feat_stride,也就是把这些点从feature map映射回原图,同时也可以看出min_size、max_size这些都是直接在针对原图来讲的 2.以mob 阅读全文
posted @ 2018-06-26 19:50 有梦就要去实现他 阅读(2690) 评论(0) 推荐(1) 编辑
摘要: name: "vgg_1/8" layer { name: "data" type: "AnnotatedData" top: "data" top: "label" include { phase: TRAIN } transform_param { mirror: true mean_value: 104.0 mean_value:... 阅读全文
posted @ 2018-06-24 19:31 有梦就要去实现他 阅读(306) 评论(0) 推荐(0) 编辑
摘要: https://www.letslearnai.com/2018/03/10/what-are-l1-and-l2-loss-functions.html http://rishy.github.io/ml/2015/07/28/l1-vs-l2-loss/ L1-loss L2-loss L1 l 阅读全文
posted @ 2018-06-24 17:50 有梦就要去实现他 阅读(615) 评论(0) 推荐(0) 编辑
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 99 下一页