详解PyTorch中Tensor的高阶操作
作者:Steven·简谈 时间:2021-11-24 12:08:00
条件选取:torch.where(condition, x, y) → Tensor
返回从 x 或 y 中选择元素的张量,取决于 condition
操作定义:
举个例子:
>>> import torch
>>> c = randn(2, 3)
>>> c
tensor([[ 0.0309, -1.5993, 0.1986],
[-0.0699, -2.7813, -1.1828]])
>>> a = torch.ones(2, 3)
>>> a
tensor([[1., 1., 1.],
[1., 1., 1.]])
>>> b = torch.zeros(2, 3)
>>> b
tensor([[0., 0., 0.],
[0., 0., 0.]])
>>> torch.where(c > 0, a, b)
tensor([[1., 0., 1.],
[0., 0., 0.]])
把张量中的每个数据都代入条件中,如果其大于 0 就得出 a,其它情况就得出 b,同样是把 a 和 b 的相同位置的数据导出。
查表搜集:torch.gather(input, dim, index, out=None) → Tensor
沿给定轴 dim,将输入索引张量 index 指定位置的值进行聚合
对一个3维张量,输出可以定义为:
out[i][j][k] = tensor[index[i][j][k]][j][k] # dim=0
out[i][j][k] = tensor[i][index[i][j][k]][k] # dim=1
out[i][j][k] = tensor[i][j][index[i][j][k]] # dim=3
举个例子:
>>> a = torch.randn(4, 10)
>>> b = a.topk(3, dim = 1)
>>> b
(tensor([[ 1.0134, 0.8785, -0.0373],
[ 1.4378, 1.4022, 1.0115],
[ 0.8985, 0.6795, 0.6439],
[ 1.2758, 1.0294, 1.0075]]), tensor([[5, 7, 6],
[2, 5, 8],
[5, 9, 2],
[7, 9, 6]]))
>>> index = b[1]
>>> index
tensor([[5, 7, 6],
[2, 5, 8],
[5, 9, 2],
[7, 9, 6]])
>>> label = torch.arange(10) + 100
>>> label
tensor([100, 101, 102, 103, 104, 105, 106, 107, 108, 109])
>>> torch.gather(label.expand(4, 10), dim=1, index=index.long()) # 进行聚合操作
tensor([[105, 107, 106],
[102, 105, 108],
[105, 109, 102],
[107, 109, 106]])
把 label 扩展为二维数据后,以 index 中的每个数据为索引,取出在 label 中索引位置的数据,再以 index 的的位置摆放。
比如,最后得出的结果中,第一行的 105 就是 label.expand(4, 10) 中第一行中索引为 5 的数据,提取出来后放在 5 所在的位置。
来源:https://blog.csdn.net/weixin_44613063/article/details/89741267
标签:PyTorch,Tensor,高阶操作
0
投稿
猜你喜欢
Python yield的使用详解
2021-07-17 22:23:29
如何利用Python实现一个论文降重工具
2021-02-04 08:11:28
python第三方库visdom的使用入门教程
2021-12-08 22:32:51
用python实现文件备份
2022-04-19 06:28:19
Django处理多用户类型的方法介绍
2022-11-30 10:16:54
Ajax的错误处理机制探讨
2007-09-07 09:53:00
python3中set(集合)的语法总结分享
2022-06-06 21:44:56
Python面向对象编程之类的继承
2021-10-27 23:46:39
pandas中groupby操作实现
2023-04-15 19:26:56
使用pandas忽略行列索引,纵向拼接多个dataframe
2022-05-23 08:52:42
使用Python实现文字转语音并生成wav文件的例子
2021-06-27 03:29:52
python中扫描条形码和二维码的实现代码
2023-02-15 23:00:12
纯ASP(VBscript)写的全球IP地址搜索程序
2007-09-27 13:28:00
python版本单链表实现代码
2022-12-06 16:49:26
url传递中文的解决方案
2007-10-09 20:17:00
oracle 优化的一点体会
2009-10-02 17:59:00
阿里开源低代码引擎和生态建设实战及思考
2023-03-30 05:46:43
使用express来代理服务的方法
2024-05-03 15:56:50
SSB(SQLservice Service Broker) 入门实例介绍
2024-01-27 14:19:00
python 字典 setdefault()和get()方法比较详解
2022-12-11 01:28:41