注意
跳转到末尾 下载完整的示例代码。
学习基础知识 || 快速入门 || 张量 || 数据集和数据加载器 || 转换 || 构建模型 || 自动微分 || 优化 || 保存和加载模型
张量#
创建时间:2021 年 2 月 10 日 | 最后更新:2025 年 1 月 24 日 | 最后验证:2024 年 11 月 5 日
张量是一种特殊的数据结构,与数组和矩阵非常相似。在 PyTorch 中,我们使用张量来编码模型的输入和输出,以及模型的参数。
张量类似于NumPy的 ndarrays,但张量可以在 GPU 或其他硬件加速器上运行。实际上,张量和 NumPy 数组通常可以共享相同的底层内存,无需复制数据(参见与 NumPy 的桥接)。张量还针对自动微分进行了优化(我们将在后面的自动微分部分看到更多内容)。如果您熟悉 ndarrays,您会很快掌握 Tensor API。如果不熟悉,请继续跟随!
import torch
import numpy as np
初始化张量#
张量可以通过多种方式初始化。请看以下示例
直接从数据初始化
张量可以直接从数据创建。数据类型会自动推断。
data = [[1, 2],[3, 4]]
x_data = torch.tensor(data)
从 NumPy 数组初始化
张量可以从 NumPy 数组创建(反之亦然 - 请参阅与 NumPy 的桥接)。
np_array = np.array(data)
x_np = torch.from_numpy(np_array)
从另一个张量初始化
除非明确覆盖,否则新张量将保留参数张量的属性(形状、数据类型)。
x_ones = torch.ones_like(x_data) # retains the properties of x_data
print(f"Ones Tensor: \n {x_ones} \n")
x_rand = torch.rand_like(x_data, dtype=torch.float) # overrides the datatype of x_data
print(f"Random Tensor: \n {x_rand} \n")
Ones Tensor:
tensor([[1, 1],
[1, 1]])
Random Tensor:
tensor([[0.8663, 0.1643],
[0.1030, 0.0139]])
使用随机值或常数初始化
shape
是张量维度的元组。在下面的函数中,它决定了输出张量的维度。
shape = (2,3,)
rand_tensor = torch.rand(shape)
ones_tensor = torch.ones(shape)
zeros_tensor = torch.zeros(shape)
print(f"Random Tensor: \n {rand_tensor} \n")
print(f"Ones Tensor: \n {ones_tensor} \n")
print(f"Zeros Tensor: \n {zeros_tensor}")
Random Tensor:
tensor([[0.1068, 0.0690, 0.8309],
[0.5327, 0.5378, 0.6324]])
Ones Tensor:
tensor([[1., 1., 1.],
[1., 1., 1.]])
Zeros Tensor:
tensor([[0., 0., 0.],
[0., 0., 0.]])
张量的属性#
张量属性描述了它们的形状、数据类型以及存储它们的设备。
tensor = torch.rand(3,4)
print(f"Shape of tensor: {tensor.shape}")
print(f"Datatype of tensor: {tensor.dtype}")
print(f"Device tensor is stored on: {tensor.device}")
Shape of tensor: torch.Size([3, 4])
Datatype of tensor: torch.float32
Device tensor is stored on: cpu
张量运算#
超过 1200 种张量运算,包括算术、线性代数、矩阵操作(转置、索引、切片)、采样等,在此处有全面的描述:这里。
这些运算中的每一个都可以在 CPU 和加速器(如 CUDA、MPS、MTIA 或 XPU)上运行。如果您使用 Colab,请通过转到“运行时”>“更改运行时类型”>“GPU”来分配加速器。
默认情况下,张量在 CPU 上创建。我们需要使用 .to
方法(在检查加速器可用性后)将张量显式移动到加速器。请记住,跨设备复制大型张量可能会在时间和内存方面产生高昂的成本!
# We move our tensor to the current accelerator if available
if torch.accelerator.is_available():
tensor = tensor.to(torch.accelerator.current_accelerator())
尝试列表中的一些运算。如果您熟悉 NumPy API,您会发现 Tensor API 使用起来非常方便。
标准的类似 NumPy 的索引和切片
First row: tensor([1., 1., 1., 1.])
First column: tensor([1., 1., 1., 1.])
Last column: tensor([1., 1., 1., 1.])
tensor([[1., 0., 1., 1.],
[1., 0., 1., 1.],
[1., 0., 1., 1.],
[1., 0., 1., 1.]])
连接张量 您可以使用 torch.cat
在给定维度上连接一系列张量。另请参阅 torch.stack,这是另一个与 torch.cat
略有不同的张量连接运算符。
tensor([[1., 0., 1., 1., 1., 0., 1., 1., 1., 0., 1., 1.],
[1., 0., 1., 1., 1., 0., 1., 1., 1., 0., 1., 1.],
[1., 0., 1., 1., 1., 0., 1., 1., 1., 0., 1., 1.],
[1., 0., 1., 1., 1., 0., 1., 1., 1., 0., 1., 1.]])
算术运算
# This computes the matrix multiplication between two tensors. y1, y2, y3 will have the same value
# ``tensor.T`` returns the transpose of a tensor
y1 = tensor @ tensor.T
y2 = tensor.matmul(tensor.T)
y3 = torch.rand_like(y1)
torch.matmul(tensor, tensor.T, out=y3)
# This computes the element-wise product. z1, z2, z3 will have the same value
z1 = tensor * tensor
z2 = tensor.mul(tensor)
z3 = torch.rand_like(tensor)
torch.mul(tensor, tensor, out=z3)
tensor([[1., 0., 1., 1.],
[1., 0., 1., 1.],
[1., 0., 1., 1.],
[1., 0., 1., 1.]])
单元素张量 如果您有一个单元素张量,例如通过将张量的所有值聚合为一个值,您可以使用 item()
将其转换为 Python 数值。
12.0 <class 'float'>
原地操作 将结果存储到操作数中的操作称为原地操作。它们用 _
后缀表示。例如:x.copy_(y)
、x.t_()
会更改 x
。
tensor([[1., 0., 1., 1.],
[1., 0., 1., 1.],
[1., 0., 1., 1.],
[1., 0., 1., 1.]])
tensor([[6., 5., 6., 6.],
[6., 5., 6., 6.],
[6., 5., 6., 6.],
[6., 5., 6., 6.]])
注意
原地操作可以节省一些内存,但在计算导数时可能会有问题,因为会立即丢失历史记录。因此,不建议使用它们。
与 NumPy 的桥接#
CPU 上的张量和 NumPy 数组可以共享它们的底层内存位置,改变一个会改变另一个。
张量到 NumPy 数组#
t = torch.ones(5)
print(f"t: {t}")
n = t.numpy()
print(f"n: {n}")
t: tensor([1., 1., 1., 1., 1.])
n: [1. 1. 1. 1. 1.]
张量的变化会反映在 NumPy 数组中。
t: tensor([2., 2., 2., 2., 2.])
n: [2. 2. 2. 2. 2.]
NumPy 数组到张量#
n = np.ones(5)
t = torch.from_numpy(n)
NumPy 数组的变化会反映在张量中。
np.add(n, 1, out=n)
print(f"t: {t}")
print(f"n: {n}")
t: tensor([2., 2., 2., 2., 2.], dtype=torch.float64)
n: [2. 2. 2. 2. 2.]
脚本总运行时间:(0 分钟 0.281 秒)