问题解答 ValueError:only one element tensors can be converted to Python scalars

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

我们在使用python数组、列表的时候,经常会把数组列表转化为Tensor,这里需要注意可能会有以下问题:

  • 问题描述``
>>> import torch
>>> a=[]
>>> b=torch.randn(3)
>>> a.append(b)
>>> b.shape
torch.Size([3])
>>> import numpy as np
>>> np.array(a)
Traceback (most recent call last):
  File "", line 1, in 
ValueError: only one element tensors can be converted to Python scalars

一个tensor的list(列表)查看这个列表的ndim(维度)或者将这个列表转换为numpy.array(数组的形式)

  • 问题解决
>>> [t.numpy() for t in list_of_tensors] 

或者:

>>> nparray=tensor.numpy()

你可能感兴趣的:(python,学生,debug,python,numpy,list)