将张量列表转换为张量张量

时间:2020-04-16 17:56:29

标签: python list pytorch

我有一个变量a,它是一堆这样的张量:

[tensor([0.0014, 0.0021, 0.0015, 0.0007, 0.0012, 0.0024, 0.0021, 0.0019, 0.0010,
        0.0010])]
[tensor([0, 0, 0, 0, 0, 0, 0, 0, 0, 0])]

....

当我要将其作为代码的一部分时:

x = torch.tensor(a, dtype=torch.float)

我收到此错误:

ValueError: only one element tensors can be converted to Python scalars

我以为我可能需要像这样转换a中的每个张量:

[tensor([[0.0014], [0.0021], [0.0015], [0.0007], [0.0012], [0.0024], [0.0021], [0.0019], [0.0010],
        [0.0010]])]
[tensor([[0], [0], [0], [0], [0], [0], [0], [0], [0], [0]])]

我认为正确吗?还是我需要避免上述错误的东西?

有什么帮助吗?

2 个答案:

答案 0 :(得分:0)

在pytorch中,您可以使用view()方法重塑张量。 精确地使用此代码:

t2 = t1.view(t1.shape[0],-1),其中t1是要重塑的张量。

工作代码:

t1 = torch.Tensor([1.6455e-04, 1.2067e-04, 4.3461e-04, 2.0265e-04, 1.4014e-04, 2.0691e-04,
        1.2612e-04, 9.2561e-05, 9.4662e-05, 7.3938e-05])

tensor_lst = []
tensor_lst.append(t1)

res_t = [] #reshaped tensor
for i in range(len(lst)):
    res_t.append(lst[i].view(lst[i].shape[0],-1))

print(res_t)

答案 1 :(得分:-1)

简单,只需重塑即可。假设您的张量/张量存储在名为tlist的列表中:

tlist = [t.reshape(-1,1) for t in tlist]