会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Picassooo
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
7
8
9
10
11
12
13
14
15
···
74
下一页
2024年8月15日
转:Pytorch中的register_buffer()
摘要: Pytorch中的register_buffer()_registerbuffer-CSDN博客
阅读全文
posted @ 2024-08-15 09:42 Picassooo
阅读(41)
评论(0)
推荐(0)
2024年8月6日
F.grid_sample和双线性插值
摘要: 详解torch.nn.functional.grid_sample函数:可实现对特征图的水平/垂直翻转_gridsample-CSDN博客 (对F.grid_sample的含义讲解的比较清楚) 一文彻底弄懂 PyTorch 的 `F.grid_sample`_pytorch grid sample-
阅读全文
posted @ 2024-08-06 16:52 Picassooo
阅读(1052)
评论(0)
推荐(0)
pytorch通过unsqueeze和expand函数生成grid
摘要: 示例: import torch h, w = 3, 5 x_ = torch.arange(w).unsqueeze(0).expand(h, -1) # torch.Size([h, w]) # expand(*size)函数可以实现对张量中单维度上数据的复制操作。 # 其中,*size分别指定
阅读全文
posted @ 2024-08-06 16:34 Picassooo
阅读(198)
评论(0)
推荐(0)
2024年7月25日
转:导出Onnx模型为动态输入和静态输入
摘要: Pytorch复习笔记--导出Onnx模型为动态输入和静态输入_onnx动态输入-CSDN博客
阅读全文
posted @ 2024-07-25 17:44 Picassooo
阅读(254)
评论(0)
推荐(0)
2024年7月23日
一步彻底解决vscode高亮慢的问题
摘要: 一步彻底解决vscode高亮慢的问题_vscode代码高亮有延迟-CSDN博客
阅读全文
posted @ 2024-07-23 20:45 Picassooo
阅读(262)
评论(0)
推荐(0)
2024年7月18日
转:BEVFormer转onnx,并优化
摘要: BEVFormer转onnx,并优化_bevformer tensorrt-CSDN博客 下面github仓库提供了直接使用BEVFormer tensorrt工程生成onnx文件的方法: GitHub - DerryHub/BEVFormer_tensorrt: BEVFormer inferen
阅读全文
posted @ 2024-07-18 15:13 Picassooo
阅读(385)
评论(0)
推荐(0)
nms_bev函数
摘要: def nms_bev(boxes, scores, thresh, pre_max_size=None, post_max_size=None): """NMS function GPU implementation (for BEV boxes). The overlap of two boxe
阅读全文
posted @ 2024-07-18 10:19 Picassooo
阅读(95)
评论(0)
推荐(0)
2024年7月15日
pytorch的expand函数
摘要: PyTorch 中的 expand 函数用于扩展张量的形状,使其在某些维度上“看起来”像被复制了多次,但实际上它不会复制数据,从而节省内存和计算资源。扩展后的张量共享原始张量的内存空间,因此原始张量和扩展后的张量是同一个数据的视图。 以下是 torch.expand 函数的一些基本用法: 1. 扩展
阅读全文
posted @ 2024-07-15 09:22 Picassooo
阅读(1975)
评论(0)
推荐(0)
2024年7月13日
转:functools.partial函数
摘要: Python functools.partial函数详解与实战_python fuctiontool partial-CSDN博客 functools.partial:Python中灵活函数部分应用的工具_functools.partial()-CSDN博客 在Python编程中,functools
阅读全文
posted @ 2024-07-13 16:20 Picassooo
阅读(99)
评论(0)
推荐(0)
2024年7月12日
转:pitch、yaw、roll三个角的区别
摘要: pitch、yaw、roll三个角的区别(yaw angle 偏航角,steering angle 航向角的解释)_pitch yaw-CSDN博客
阅读全文
posted @ 2024-07-12 17:24 Picassooo
阅读(202)
评论(0)
推荐(0)
上一页
1
···
7
8
9
10
11
12
13
14
15
···
74
下一页
公告