0%

pytorch tensor/numpy常用操作函数

1. tensor.mean()

取算术平均值。指定参数可以计算每一行或者 每一列的算术平均数

2. tensor.unsqueeze(i)

在某个维度(从0开始)增加一个维度。squeeze(i)去掉某一维度

3.numpy转tensor时的Double Tensor 和Float Tensor 不一致:

对numpy用astype(np.float32)可以解决

1
RuntimeError: Expected object of type torch.DoubleTensor but found type torch.FloatTensor for argument #2 'weight'

4.numpy和tensor转换:

List转numpy.array:

1
temp = np.array(list) 

numpy.array转List:

1
arr = temp.tolist() 

5.numpy升降维:

相关链接

numpy的升维
将(2,)变成(2,1)

1
2
3
4
a = np.array([1,2])
b = np.expand_dims(a, axis=1)
a = np.array([[1],[2]])
b = np.squeeze(a)

6.numpy数组拼接:

相关链接
a -> 转成list(a) ->  lista.extend(listb) ->  a = np.array(lista)

7.numpy数组降维:

1
np.array(a),a.reshape(2000)..

8.RuntimeError: dimension out of range (expected to be in range of [-1, 0], but got 1)

维度不对,请查看当前tensor形状
相关链接

-------------这么快就看完啦^ω^谢谢阅读哟-------------