【发布时间】:2021-02-06 05:56:08
【问题描述】:
我有一个形状为(1, N, 1) 的张量a。我需要将张量沿维度1 左移并添加一个新值作为替换。我找到了一种方法来完成这项工作,下面是代码。
a = torch.from_numpy(np.array([1, 2, 3]))
a = a.unsqueeze(0).unsqeeze(2) # (1, 3, 1), my data resembles this shape, therefore the two unsqueeze
# want to left shift a along dim 1 and insert a new value at the end
# I achieve the required shifts using the following code
b = a.squeeze
c = b.roll(shifts=-1)
c[-1] = 4
c = c.unsqueeze(0).unsqueeze(2)
# c = [[[2], [3], [4]]]
我的问题是,有没有更简单的方法可以做到这一点?谢谢。
【问题讨论】:
标签: python-3.x torch