list numpy tensor 转换
Posted yeran
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了list numpy tensor 转换相关的知识,希望对你有一定的参考价值。
1 list 与 numpy
numpy2list:
b = list(a) or b = a.tolist()
list2numpy:
n = numpy.array(a)
2 numpy 与 tensor
numpy2tensor:
b= torch.from_numpy(a)
tensor2numpy:
b= a.numpy()
以上是关于list numpy tensor 转换的主要内容,如果未能解决你的问题,请参考以下文章
python 中各类型介绍及相互转换 - list, array, tensor, dict, tuple, DataFrame
Python中 list, numpy.array, torch.Tensor 格式相互转化