python基本类型、list、numpy、Tensor类型之间的相互转换

python基本类型、list、numpy、Tensor类型之间的相互转换

  • list转numpy
  • numpy转list
  • numpy转Tensor
  • Tensor转numpy
  • list转Tensor
  • Tensor转list
  • Tensor转基本类型
  • 基本类型转Tensor
  • Tensor转Tensor
  • 类型关系
  • 补充

list转numpy

b = [random.random() for i in range(4)]
print('b的类型',type(b))
a = numpy.array(b)
print('a的类型',type(a))

输出

b的类型 <class 'list'>
a的类型 <class 'numpy.ndarray'>

numpy转list

a = numpy.random.rand(2,2)
print('a的类型',type(a))
b = a.tolist()
print('b的类型',type(b))

输出

a的类型 <class 'numpy.ndarray'>
b的类型 <class 'list'>

numpy转Tensor

a = numpy.random.rand(2,2)
print('a的类型',type(a))
c = torch.Tensor(a)
print('c的类型',type(c))
e = torch.from_numpy(a)
print('e的类型',type(e))

输出

a的类型 <class 'numpy.ndarray'>
c的类型 <class 'torch.Tensor'>
e的类型 <class 'torch.Tensor'>

Tensor转numpy

c = torch.rand(2,2)
print('c的类型',type(c))
a = c.numpy()
print('a的类型',type(a))

输出

c的类型 <class 'torch.Tensor'>
a的类型 <class 'numpy.ndarray'>

list转Tensor

b = [random.random() for i in range(4)]
print('b的类型',type(b))
c = torch.tensor(b)
print('c的类型',type(c))

输出

b的类型 <class 'list'>
c的类型 <class 'torch.Tensor'>

Tensor转list

c = torch.rand(2,2)
print('c的类型',type(c))
b = c.numpy().tolist()
print('b的类型',type(b))

#gpu上的tensor不能直接转为numpy
if torch.cuda.is_available():
    print("GPU train avaliable")
    device = torch.device("cuda")
else:
    print("CPU train avaliable")
    device = torch.device("cpu")
e = c.to(device)
d = c.cpu().detach().numpy().tolist()
print('d的类型',type(d))

输出

c的类型 <class 'torch.Tensor'>
b的类型 <class 'list'>
GPU train avaliable
d的类型 <class 'list'>

Tensor转基本类型

c = torch.rand(2,2)
print('c的类型',type(c))
a = c.item()
print('a的类型',type(a))

输出

c的类型 <class 'torch.Tensor'>
a的类型 <class 'float'>

基本类型转Tensor

a = 1
print('a的类型',type(a))
c = torch.tensor(a)
print('c的类型',type(c))

输出

a的类型 <class 'int'>
c的类型 <class 'torch.Tensor'>

Tensor转Tensor

tensor = torch.randn(2, 2)
print(tensor, tensor.dtype)
tensor = tensor.to(dtype=torch.long)
print(tensor, tensor.dtype)

输出

tensor([[ 2.4507, -0.1803],
        [ 0.3871, -0.7686]]) torch.float32
tensor([[2, 0],
        [0, 0]]) torch.int64

类型关系

python基本类型、list、numpy、Tensor类型之间的相互转换_第1张图片

补充

Pytorch中Tensor的类型转换

你可能感兴趣的:(b站/技术笔记,python,list)