大家好,又见面了,我是你们的朋友全栈君。
Tensor 和 NumPy 相互转换
我们很容易用
numpy()
和from_numpy()
将Tensor
和NumPy
中的数组相互转换。但是需要注意的一点是: 这两个函数所产生的Tensor
和NumPy
中的数组共享相同的内存(所以他们之间的转换很快),改变其中一个时另一个也会改变!
文章目录
- Tensor 和 NumPy 相互转换
- 1. Tensor 转 NumPy
- 2. NumPy 数组转 Tensor
- 3. torch.tensor() 将 NumPy 数组转换成 Tensor
1. Tensor 转 NumPy
代码语言:javascript复制a = torch.ones(6)
b = a.numpy()
print(a, b)
a = 1
print(a, b)
b = 1
print(a, b)
代码语言:javascript复制tensor([1., 1., 1., 1., 1., 1.]) [1. 1. 1. 1. 1. 1.]
tensor([2., 2., 2., 2., 2., 2.]) [2. 2. 2. 2. 2. 2.]
tensor([3., 3., 3., 3., 3., 3.]) [3. 3. 3. 3. 3. 3.]
2. NumPy 数组转 Tensor
代码语言:javascript复制import numpy as np
a = np.ones(7)
b = torch.from_numpy(a)
print(a, b)
a = 1
print(a, b)
b = 1
print(a, b)
代码语言:javascript复制[1. 1. 1. 1. 1. 1. 1.] tensor([1., 1., 1., 1., 1., 1., 1.], dtype=torch.float64)
[2. 2. 2. 2. 2. 2. 2.] tensor([2., 2., 2., 2., 2., 2., 2.], dtype=torch.float64)
[3. 3. 3. 3. 3. 3. 3.] tensor([3., 3., 3., 3., 3., 3., 3.], dtype=torch.float64)
3. torch.tensor() 将 NumPy 数组转换成 Tensor
直接用torch.tensor()
将NumPy
数组转换成Tensor
,该方法总是会进行数据拷贝,返回的Tensor
和原来的数据不再共享内存。
import numpy as np
a = np.ones((2,3))
c = torch.tensor(a)
a = 1
print('a:',a)
print('c:',c)
print(id(a)==id(c))
代码语言:javascript复制a: [[2. 2. 2.]
[2. 2. 2.]]
c: tensor([[1., 1., 1.],
[1., 1., 1.]], dtype=torch.float64)
False
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/180185.html原文链接:https://javaforall.cn