pytorch里面的scatter_
程序员文章站
2024-03-24 23:31:46
...
x=torch.zeros(3,3)
x.scatter_(1,torch.tensor([0,1,2],dtype=torch.int64).view(-1,1),34)
print(x)
输出
tensor([[34., 0., 0.],
[ 0., 34., 0.],
[ 0., 0., 34.]])
功能:在指定维度的指定位置填充整数
x.scatter_(dim,tensor,int)
dim填充的维度
tensor: int64类型,与x同维度
int:填充的数字
再来一个示例
x=torch.zeros(3,3)
x.scatter_(1,torch.tensor([0,1,2,0,1,2],dtype=torch.int64).view(3,-1),34)
print(x)
输出
tensor([[34., 34., 0.],
[34., 0., 34.],
[ 0., 34., 34.]])
``
还有这个
x=torch.zeros(5,5)
x.scatter_(1,torch.tensor([0,1,2,0,1,2],dtype=torch.int64).view(3,-1),34)
print(torch.tensor([0,1,2,0,1,2],dtype=torch.int64).view(3,-1))
print(x)
输出:
tensor([[0, 1],
[2, 0],
[1, 2]])
tensor([[34., 34., 0., 0., 0.],
[34., 0., 34., 0., 0.],
[ 0., 34., 34., 0., 0.],
[ 0., 0., 0., 0., 0.],
[ 0., 0., 0., 0., 0.]])
记忆小技巧:填1维看0维,填0维看1维,毕竟01还是要搭配着来比较好
推荐阅读
-
【pytorch】使用scatter_()进行one-hot编码
-
Pytorch中的scatter_函数
-
pytorch里面的scatter_
-
Pytorch---之scatter_ 理解轴的含义
-
PyTorch中scatter()和scatter_()函数的作用
-
【Pytorch】scatter_ 理解轴的含义
-
念导出的$objWriter->save('my-test'$id.'xls');里的文件,但实际保存的是整个页面的信息,求大神指点
-
排除字符串里某字符第3次出现后面的所有字符,代码怎么写
-
各位能帮忙解释一上,上面的代码,有些小弟我在帮助里找的到,有的找不到
-
怎么将lnmp 0.5里面的php5.2.14升级到php 5.3.3?