博客同步于
# 标量 import torch x = torch.tensor([3.0]) y = torch.tensor([2.0]) x + y, x * y, x / y, x ** y
(tensor([5.]), tensor([6.]), tensor([1.5000]), tensor([9.]))
x = torch.arange(4) x
tensor([0, 1, 2, 3])
x[3] # 通过索引访问任一元素
tensor(3)
len(x) # 张量的长度
4
x.shape
torch.Size([4])
# 创建一个m * n的矩阵 A = torch.arange(20).reshape(5, 4) A
tensor([[ 0, 1, 2, 3],
[ 4, 5, 6, 7],
[ 8, 9, 10, 11],
[12, 13, 14, 15],
[16, 17, 18, 19]])
# 矩阵的转置 A.T
tensor([[ 0, 4, 8, 12, 16],
[ 1, 5, 9, 13, 17],
[ 2, 6, 10, 14, 18],
[ 3, 7, 11, 15, 19]])
# 对称矩阵,A等于其转置 B = torch.tensor([[1, 2, 3], [2, 0, 4], [3, 4, 5]]) B
tensor([[1, 2, 3],
[2, 0, 4],
[3, 4, 5]])
B == B.T
tensor([[True, True, True],
[True, True, True],
[True, True, True]])
# 三维 x = torch.arange(24).reshape(2, 3, 4) x
tensor([[[ 0, 1, 2, 3],
[ 4, 5, 6, 7],
[ 8, 9, 10, 11]],
[[12, 13, 14, 15],
[16, 17, 18, 19],
[20, 21, 22, 23]]])
# 相同形状的两个张量,可以按元素进行二元运算 A = torch.arange(20, dtype=torch.float32).reshape(5, 4) B = A.clone() # 通过分配新内存,将A的一个副本分配给B B和A没有关系,深拷贝 A, A + B
(tensor([[ 0., 1., 2., 3.],
[ 4., 5., 6., 7.],
[ 8., 9., 10., 11.],
[12., 13., 14., 15.],
[16., 17., 18., 19.]]),
tensor([[ 0., 2., 4., 6.],
[ 8., 10., 12., 14.],
[16., 18., 20., 22.],
[24., 26., 28., 30.],
[32., 34., 36., 38.]]))
A * B #两个矩阵按元素乘法,哈达玛积
tensor([[ 0., 1., 4., 9.],
[ 16., 25., 36., 49.],
[ 64., 81., 100., 121.],
[144., 169., 196., 225.],
[256., 289., 324., 361.]])
a = 2 X = torch.arange(24).reshape(2, 3, 4) a + X, (a * X).shape
(tensor([[[ 2, 3, 4, 5],
[ 6, 7, 8, 9],
[10, 11, 12, 13]],
[[14, 15, 16, 17],
[18, 19, 20, 21],
[22, 23, 24, 25]]]),
torch.Size([2, 3, 4]))
# 计算元素的和 x = torch.arange(4, dtype=torch.float32) x, x.sum()
(tensor([0., 1., 2., 3.]), tensor(6.))
A = torch.arange(20, dtype=torch.float32).reshape(5,4) A.shape, A.sum()
(torch.Size([5, 4]), tensor(190.))
# 指定求和汇总张量的轴 A_sum_axis0 = A.sum(axis=0) A_sum_axis0, A_sum_axis0.shape
(tensor([40., 45., 50., 55.]), torch.Size([4]))
A_sum_axis1 = A.sum(axis=1) A_sum_axis1, A_sum_axis1.shape
(tensor([ 6., 22., 38., 54., 70.]), torch.Size([5]))
A.sum(axis=[0, 1]) # 按照两个维度求和
tensor(190.)
# 求平均值,或者按某个维度来求均值 A.mean(dtype=torch.float32), A.sum() / A.numel()
(tensor(9.5000), tensor(9.5000))
A.mean(axis=0, dtype=torch.float32), A.sum(axis=0) / A.shape[0]
(tensor([ 8., 9., 10., 11.]), tensor([ 8., 9., 10., 11.]))
# 计算总和或均值时(使用keepdims=True)保持轴数不变(为了使用广播机制) sum_A = A.sum(axis=1, keepdims=True) sum_A
tensor([[ 6.],
[22.],
[38.],
[54.],
[70.]])
# 通过广播将A除以sum_A A / sum_A
tensor([[0.0000, 0.1667, 0.3333, 0.5000],
[0.1818, 0.2273, 0.2727, 0.3182],
[0.2105, 0.2368, 0.2632, 0.2895],
[0.2222, 0.2407, 0.2593, 0.2778],
[0.2286, 0.2429, 0.2571, 0.2714]])
# 某个轴计算A元素的累积总和 A.cumsum(axis=0)
tensor([[ 0., 1., 2., 3.],
[ 4., 6., 8., 10.],
[12., 15., 18., 21.],
[24., 28., 32., 36.],
[40., 45., 50., 55.]])
# 点积,相同位置的元素乘积的和 y = torch.ones(4, dtype=torch.float32) x, y, torch.dot(x, y), torch.sum(x * y)
(tensor([0., 1., 2., 3.]), tensor([1., 1., 1., 1.]), tensor(6.), tensor(6.))
# 矩阵向量积 A.shape, x.shape, torch.mv(A, x)
(torch.Size([5, 4]), torch.Size([4]), tensor([ 14., 38., 62., 86., 110.]))
# 矩阵乘法 B = torch.ones(4, 3) torch.mm(A, B)
tensor([[ 6., 6., 6.],
[22., 22., 22.],
[38., 38., 38.],
[54., 54., 54.],
[70., 70., 70.]])
# L2范数是向量元素平方和的平方根: u = torch.tensor([3.0, -4.0]) torch.norm(u)
tensor(5.)
# L1范数是向量元素的绝对值之和 torch.abs(u).sum()
tensor(7.)
# 矩阵的 弗罗贝尼乌斯范数 是矩阵元素的平方和的平方根 torch.norm(torch.ones((4, 9)))
tensor(6.)



