上一页 1 2 3 4 5 6 7 8 9 10 ··· 63 下一页
摘要: 写入CSV文件 save_path = '/home/wp/st_detection/download_code/toy.csv' with open(save_path, 'w', newline='') as csvfile: det_writer = csv.writer(csvfile, d 阅读全文
posted @ 2023-10-19 12:35 Picassooo 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 本文摘自: 论文口语化怎么改进? - 知乎 (zhihu.com) 论文口语化严重怎么修改? - 知乎 (zhihu.com) 1.连接词。中文发表论文的撰写中,连接词的用法(及使用范围)和英语几乎一致,一般要求同一段2个独立句间或2个有逻辑连接的自然段间需要使用连接词表明逻辑连接。 常用连接词(短 阅读全文
posted @ 2023-10-05 16:39 Picassooo 阅读(1184) 评论(0) 推荐(0) 编辑
摘要: 【PyTorch踩坑】一个排查了一下午的坑 - 知乎 (zhihu.com) 阅读全文
posted @ 2023-09-10 14:13 Picassooo 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 图解 RoIAlign 以及在 PyTorch 中的使用(含代码示例)_虾米小馄饨的博客-CSDN博客 如何在你自己的代码中使用ROI Pool和ROI Align(PyTorch 1.0)_ronghuaiyang的博客-CSDN博客 阅读全文
posted @ 2023-09-08 10:12 Picassooo 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 本文摘自:VsCode justMyCode: false无效 - 知乎 (zhihu.com) launch.json里增加 "purpose":["debug-in-terminal"] { // Use IntelliSense to learn about possible attribut 阅读全文
posted @ 2023-09-07 10:56 Picassooo 阅读(175) 评论(0) 推荐(0) 编辑
摘要: latex输入多行公式,在等号处左对齐 阅读全文
posted @ 2023-08-13 12:23 Picassooo 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 转:python数学建模之用optimize.linear_sum_assignment解决模型优化之指派问题_嗨,紫玉灵神熊的博客-CSDN博客 阅读全文
posted @ 2023-07-28 17:10 Picassooo 阅读(478) 评论(0) 推荐(0) 编辑
摘要: import torch box = torch.tensor([ # 边界框的坐标,(x1, y1, x2, y2). box'shape: (3, 4) [0.1, 0.2, 0.5, 0.3], [0.6, 0.6, 0.9, 0.9], [0.1, 0.1, 0.2, 0.2] ]) whw 阅读全文
posted @ 2023-07-25 12:07 Picassooo 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 18本经典人物传记推荐 阅读全文
posted @ 2023-07-23 16:48 Picassooo 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 两个boxes之间的iou计算: import numpy as np def iou(box1, box2): x1, y1, x2, y2 = box1 w1, h1, w2, h2 = box2 left_max = max(x1, w1) right_min = min(x2, w2) to 阅读全文
posted @ 2023-07-15 12:22 Picassooo 阅读(363) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 63 下一页