码迷,mamicode.com
首页 > 编程语言 > 详细

Python中 list, numpy.array, torch.Tensor 格式相互转化

时间:2019-04-29 20:41:42      阅读:402      评论:0      收藏:0      [点我收藏+]

标签:ORC   python   gpu   nump   numpy   tor   pytho   list   strong   

1.1 list 转 numpy

ndarray = np.array(list)

 

1.2 numpy 转 list

list = ndarray.tolist()

 

2.1 list 转 torch.Tensor

tensor=torch.Tensor(list)

 

2.2 torch.Tensor 转 list

先转numpy,后转list

list = tensor.numpy().tolist()

 

3.1 torch.Tensor 转 numpy

ndarray = tensor.numpy()

*gpu上的tensor不能直接转为numpy

ndarray = tensor.cpu().numpy()

 

3.2 numpy 转 torch.Tensor

tensor = torch.from_numpy(ndarray) 

 

Python中 list, numpy.array, torch.Tensor 格式相互转化

标签:ORC   python   gpu   nump   numpy   tor   pytho   list   strong   

原文地址:https://www.cnblogs.com/siyuan1998/p/10792481.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!