Learn PyTorch—张量
Learn PyTorch—张量
张量如同数组和矩阵一样, 是一种特殊的数据结构。在
PyTorch
中, 神经网络的输入、输出以及网络的参数等数据, 都是使用张量来进行描述。
张量初始化
1. 直接生成张量
由原始数据直接生成张量, 张量类型由原始数据类型决定。
1 | import torch |
2. 通过Numpy数组来生成张量
由已有的Numpy
数组来生成张量。张量与Numpy可以相互转化。
1 | np_array = np.array(data) |
3. 通过已有的张量来生成新的张量
新的张量将继承已有张量的数据属性(结构、类型), 也可以重新指定新的数据类型。
1 | x_ones = torch.ones_like(x_data) # 保留 x_data 的属性 |
output:
1 | Ones Tensor: |
4. 通过指定数据维度来生成张量
shape
是元组类型, 用来描述张量的维数, 下面3个函数通过传入
shape
来指定生成张量的维数。
1 | shape = (2,3,) |
output:
1 | Random Tensor: |
张量属性
得到张量的维数、数据类型以及它们所存储的设备(CPU或GPU)。
1 | tensor = torch.rand(3,4) |
output:
1 | Shape of tensor: torch.Size([3, 4]) # 维数 |
张量运算
这些运算都可以在GPU上运行(相对于CPU来说可以达到更高的运算速度)。
1 | # 判断当前环境GPU是否可用, 然后将tensor导入GPU内运行 |
1.张量的索引和切片
1 | tensor = torch.ones(4, 4) |
output:
1 | tensor([[1., 0., 1., 1.], |
2. 张量的拼接
通过torch.cat
方法将一组张量按照指定的维度进行拼接
1 | t1 = torch.cat([tensor, tensor, tensor], dim=1) # dim=1 为横向拼接 |
output:
1 | tensor([[1., 0., 1., 1., 1., 0., 1., 1., 1., 0., 1., 1.], |
3. 张量的乘积和矩阵乘法
逐个元素相乘
1 | # 逐个元素相乘结果 |
output:
1 | tensor.mul(tensor): |
张量与张量的矩阵乘法
1 | print(f"tensor.matmul(tensor.T): \n {tensor.matmul(tensor.T)} \n") |
output:
1 | tensor.matmul(tensor.T): |
4. 自动赋值运算
自动赋值运算通常在方法后有 _
作为后缀, 例如: x.copy_(y)
, x.t_()
操作会改变 x
的取值。
1 | print(tensor, "\n") |
output:
1 | tensor([[1., 0., 1., 1.], |
自动赋值运算虽然可以节省内存, 但在求导时会因为丢失了中间过程而导致一些问题。
Tensor与Numpy的转化
张量和Numpy array
数组在CPU上可以共用一块内存区域, 改变其中一个另一个也会随之改变
。
1. 由张量变换为Numpy array数组
1 | t = torch.ones(5) |
output:
1 | t: tensor([1., 1., 1., 1., 1.]) |
修改张量的值,则Numpy array
数组值也会随之改变。
1 | t.add_(1) |
output:
1 | t: tensor([2., 2., 2., 2., 2.]) |
2. 由Numpy array数组转为张量
1 | n = np.ones(5) |
output:
1 | t:tensor([1., 1., 1., 1., 1.], dtype=torch.float64) |
修改Numpy array
数组的值,则张量值也会随之改变。
1 | np.add(n, 1, out=n) |
output:
1 | t: tensor([2., 2., 2., 2., 2.], dtype=torch.float64) |
附录
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Javis's Blogs!
评论