ruijiege

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 35 下一页

2023年2月22日

摘要: 首先看分类是否有问题 其次需要看target是否从0开始 链接如下 (43条消息) Target xxx is out of bounds._`AllureLove的博客-CSDN博客 阅读全文
posted @ 2023-02-22 16:46 哦哟这个怎么搞 阅读(267) 评论(0) 推荐(0) 编辑

摘要: https://blog.csdn.net/lycwhu/article/details/124505930 阅读全文
posted @ 2023-02-22 14:21 哦哟这个怎么搞 阅读(11) 评论(0) 推荐(0) 编辑

摘要: 博客链接 方法一:https://blog.csdn.net/qq_54452082/article/details/127439908(这个我没成功) 方法二:https://blog.csdn.net/Superman980527/article/details/127454352 (成功) 阅读全文
posted @ 2023-02-22 11:47 哦哟这个怎么搞 阅读(14) 评论(0) 推荐(0) 编辑

2023年2月21日

摘要: (43条消息) pytorch中的数据导入之DataLoader和Dataset的使用介绍_pytorch dataloader.dataset_非晚非晚的博客-CSDN博客 阅读全文
posted @ 2023-02-21 20:43 哦哟这个怎么搞 阅读(75) 评论(0) 推荐(0) 编辑

2022年12月8日

摘要: 连接: 目标检测评价标准mAP - 知乎 (zhihu.com) 1.混淆矩阵 真实值(true) 真实值(false) 预测值(true)TP (True Positive) FP(False Positive) 预测值(false)FN(False Negative) TN(True Negat 阅读全文
posted @ 2022-12-08 14:27 哦哟这个怎么搞 阅读(22) 评论(0) 推荐(0) 编辑

摘要: https://paperswithcode.com/sota/image-classification-on-imagenet 阅读全文
posted @ 2022-12-08 10:04 哦哟这个怎么搞 阅读(87) 评论(0) 推荐(0) 编辑

摘要: def iou(a, b): """ :param a:4*M*1 left,top,right,bottom :param b:4*1*N left,top,right,bottom :return: """ aleft, atop, aright, abottom = [a[i] for i i 阅读全文
posted @ 2022-12-08 10:00 哦哟这个怎么搞 阅读(29) 评论(0) 推荐(0) 编辑

2022年12月6日

摘要: B站博主连接 https://www.bilibili.com/video/BV1j44y1q7k8?p=5&spm_id_from=pageDriver&vd_source=b5895d146d318218d827c3dd7336f41c 阅读全文
posted @ 2022-12-06 19:14 哦哟这个怎么搞 阅读(19) 评论(0) 推荐(0) 编辑

摘要: anchor-based:这里基于fasterrcnn中选择anchor的方法 ## RPN阶段(anchor target):1. 计算所有样本点(w x h)与9个anchor拼在一起形成w x h x 9个框,得到all_anchors(以图像为单位) - mesh_grid,featurem 阅读全文
posted @ 2022-12-06 10:12 哦哟这个怎么搞 阅读(284) 评论(0) 推荐(0) 编辑

2022年12月5日

摘要: def iou(a, b): ax, ay, ar, ab = a bx, by, br, bb = b cross_x = max(ax, bx) cross_y = max(ay, by) cross_r = min(ar, br) cross_b = min(ab, bb) cross_w = 阅读全文
posted @ 2022-12-05 10:57 哦哟这个怎么搞 阅读(15) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 35 下一页