4-2,张量的数学运算

张量的操作主要包括张量的结构操作和张量的数学运算。

张量结构操作诸如:张量创建,索引切片,维度变换,合并分割。

张量数学运算主要有:标量运算,向量运算,矩阵运算。另外我们会介绍张量运算的广播机制。

本篇我们介绍张量的数学运算。

一,标量运算

张量的数学运算符可以分为标量运算符、向量运算符、以及矩阵运算符。

加减乘除乘方,以及三角函数,指数,对数等常见函数,逻辑比较运算符等都是标量运算符。

标量运算符的特点是对张量实施逐元素运算。

有些标量运算符对常用的数学运算符进行了重载。并且支持类似numpy的广播特性。

许多标量运算符都在 tf.math模块下。

  1. import tensorflow as tf
  2. import numpy as np
  1. a = tf.constant([[1.0,2],[-3,4.0]])
  2. b = tf.constant([[5.0,6],[7.0,8.0]])
  3. a+b #运算符重载
  1. <tf.Tensor: shape=(2, 2), dtype=float32, numpy=
  2. array([[ 6., 8.],
  3. [ 4., 12.]], dtype=float32)>
  1. a-b
  1. <tf.Tensor: shape=(2, 2), dtype=float32, numpy=
  2. array([[ -4., -4.],
  3. [-10., -4.]], dtype=float32)>
  1. a*b
  1. <tf.Tensor: shape=(2, 2), dtype=float32, numpy=
  2. array([[ 5., 12.],
  3. [-21., 32.]], dtype=float32)>
  1. a/b
  1. <tf.Tensor: shape=(2, 2), dtype=float32, numpy=
  2. array([[ 0.2 , 0.33333334],
  3. [-0.42857143, 0.5 ]], dtype=float32)>
  1. a**2
  1. <tf.Tensor: shape=(2, 2), dtype=float32, numpy=
  2. array([[ 1., 4.],
  3. [ 9., 16.]], dtype=float32)>
  1. a**(0.5)
  1. <tf.Tensor: shape=(2, 2), dtype=float32, numpy=
  2. array([[1. , 1.4142135],
  3. [ nan, 2. ]], dtype=float32)>
  1. a%3 #mod的运算符重载,等价于m = tf.math.mod(a,3)
  1. <tf.Tensor: shape=(3,), dtype=int32, numpy=array([1, 2, 0], dtype=int32)>
  1. a//3 #地板除法
  1. <tf.Tensor: shape=(2, 2), dtype=float32, numpy=
  2. array([[ 0., 0.],
  3. [-1., 1.]], dtype=float32)>
  1. (a>=2)
  1. <tf.Tensor: shape=(2, 2), dtype=bool, numpy=
  2. array([[False, True],
  3. [False, True]])>
  1. (a>=2)&(a<=3)
  1. <tf.Tensor: shape=(2, 2), dtype=bool, numpy=
  2. array([[False, True],
  3. [False, False]])>
  1. (a>=2)|(a<=3)
  1. <tf.Tensor: shape=(2, 2), dtype=bool, numpy=
  2. array([[ True, True],
  3. [ True, True]])>
  1. a==5 #tf.equal(a,5)
  1. <tf.Tensor: shape=(3,), dtype=bool, numpy=array([False, False, False])>
  1. tf.sqrt(a)
  1. <tf.Tensor: shape=(2, 2), dtype=float32, numpy=
  2. array([[1. , 1.4142135],
  3. [ nan, 2. ]], dtype=float32)>
  1. a = tf.constant([1.0,8.0])
  2. b = tf.constant([5.0,6.0])
  3. c = tf.constant([6.0,7.0])
  4. tf.add_n([a,b,c])
  1. <tf.Tensor: shape=(2,), dtype=float32, numpy=array([12., 21.], dtype=float32)>
  1. tf.print(tf.maximum(a,b))
  1. [5 8]
  1. tf.print(tf.minimum(a,b))
  1. [1 6]

二,向量运算

向量运算符只在一个特定轴上运算,将一个向量映射到一个标量或者另外一个向量。 许多向量运算符都以reduce开头。

  1. #向量reduce
  2. a = tf.range(1,10)
  3. tf.print(tf.reduce_sum(a))
  4. tf.print(tf.reduce_mean(a))
  5. tf.print(tf.reduce_max(a))
  6. tf.print(tf.reduce_min(a))
  7. tf.print(tf.reduce_prod(a))
  1. 45
  2. 5
  3. 9
  4. 1
  5. 362880
  1. #张量指定维度进行reduce
  2. b = tf.reshape(a,(3,3))
  3. tf.print(tf.reduce_sum(b, axis=1, keepdims=True))
  4. tf.print(tf.reduce_sum(b, axis=0, keepdims=True))
  1. [[6]
  2. [15]
  3. [24]]
  4. [[12 15 18]]
  1. #bool类型的reduce
  2. p = tf.constant([True,False,False])
  3. q = tf.constant([False,False,True])
  4. tf.print(tf.reduce_all(p))
  5. tf.print(tf.reduce_any(q))
  1. 0
  2. 1
  1. #利用tf.foldr实现tf.reduce_sum
  2. s = tf.foldr(lambda a,b:a+b,tf.range(10))
  3. tf.print(s)
  1. 45
  1. #cum扫描累积
  2. a = tf.range(1,10)
  3. tf.print(tf.math.cumsum(a))
  4. tf.print(tf.math.cumprod(a))
  1. [1 3 6 ... 28 36 45]
  2. [1 2 6 ... 5040 40320 362880]
  1. #arg最大最小值索引
  2. a = tf.range(1,10)
  3. tf.print(tf.argmax(a))
  4. tf.print(tf.argmin(a))
  1. 8
  2. 0
  1. #tf.math.top_k可以用于对张量排序
  2. a = tf.constant([1,3,7,5,4,8])
  3. values,indices = tf.math.top_k(a,3,sorted=True)
  4. tf.print(values)
  5. tf.print(indices)
  6. #利用tf.math.top_k可以在TensorFlow中实现KNN算法
  1. [8 7 5]
  2. [5 2 3]

三,矩阵运算

矩阵必须是二维的。类似tf.constant([1,2,3])这样的不是矩阵。

矩阵运算包括:矩阵乘法,矩阵转置,矩阵逆,矩阵求迹,矩阵范数,矩阵行列式,矩阵求特征值,矩阵分解等运算。

除了一些常用的运算外,大部分和矩阵有关的运算都在tf.linalg子包中。

  1. #矩阵乘法
  2. a = tf.constant([[1,2],[3,4]])
  3. b = tf.constant([[2,0],[0,2]])
  4. a@b #等价于tf.matmul(a,b)
  1. <tf.Tensor: shape=(2, 2), dtype=int32, numpy=
  2. array([[2, 4],
  3. [6, 8]], dtype=int32)>
  1. #矩阵转置
  2. a = tf.constant([[1.0,2],[3,4]])
  3. tf.transpose(a)
  1. <tf.Tensor: shape=(2, 2), dtype=float32, numpy=
  2. array([[1., 3.],
  3. [2., 4.]], dtype=float32)>
  1. #矩阵逆,必须为tf.float32或tf.double类型
  2. a = tf.constant([[1.0,2],[3.0,4]],dtype = tf.float32)
  3. tf.linalg.inv(a)
  1. <tf.Tensor: shape=(2, 2), dtype=float32, numpy=
  2. array([[-2.0000002 , 1.0000001 ],
  3. [ 1.5000001 , -0.50000006]], dtype=float32)>
  1. #矩阵求trace
  2. a = tf.constant([[1.0,2],[3,4]])
  3. tf.linalg.trace(a)
  1. <tf.Tensor: shape=(), dtype=float32, numpy=5.0>
  1. #矩阵求范数
  2. a = tf.constant([[1.0,2],[3,4]])
  3. tf.linalg.norm(a)
  1. <tf.Tensor: shape=(), dtype=float32, numpy=5.477226>
  1. #矩阵行列式
  2. a = tf.constant([[1.0,2],[3,4]])
  3. tf.linalg.det(a)
  1. <tf.Tensor: shape=(), dtype=float32, numpy=-2.0>
  1. #矩阵特征值
  2. tf.linalg.eigvalsh(a)
  1. <tf.Tensor: shape=(2,), dtype=float32, numpy=array([-0.8541021, 5.854102 ], dtype=float32)>
  1. #矩阵qr分解
  2. a = tf.constant([[1.0,2.0],[3.0,4.0]],dtype = tf.float32)
  3. q,r = tf.linalg.qr(a)
  4. tf.print(q)
  5. tf.print(r)
  6. tf.print(q@r)
  1. [[-0.316227794 -0.948683321]
  2. [-0.948683321 0.316227734]]
  3. [[-3.1622777 -4.4271884]
  4. [0 -0.632455349]]
  5. [[1.00000012 1.99999976]
  6. [3 4]]
  1. #矩阵svd分解
  2. a = tf.constant([[1.0,2.0],[3.0,4.0]],dtype = tf.float32)
  3. v,s,d = tf.linalg.svd(a)
  4. tf.matmul(tf.matmul(s,tf.linalg.diag(v)),d)
  5. #利用svd分解可以在TensorFlow中实现主成分分析降维
  1. <tf.Tensor: shape=(2, 2), dtype=float32, numpy=
  2. array([[0.9999996, 1.9999996],
  3. [2.9999998, 4. ]], dtype=float32)>

四,广播机制

TensorFlow的广播规则和numpy是一样的:

  • 1、如果张量的维度不同,将维度较小的张量进行扩展,直到两个张量的维度都一样。
  • 2、如果两个张量在某个维度上的长度是相同的,或者其中一个张量在该维度上的长度为1,那么我们就说这两个张量在该维度上是相容的。
  • 3、如果两个张量在所有维度上都是相容的,它们就能使用广播。
  • 4、广播之后,每个维度的长度将取两个张量在该维度长度的较大值。
  • 5、在任何一个维度上,如果一个张量的长度为1,另一个张量长度大于1,那么在该维度上,就好像是对第一个张量进行了复制。

tf.broadcast_to 以显式的方式按照广播机制扩展张量的维度。

  1. a = tf.constant([1,2,3])
  2. b = tf.constant([[0,0,0],[1,1,1],[2,2,2]])
  3. b + a #等价于 b + tf.broadcast_to(a,b.shape)
  1. <tf.Tensor: shape=(3, 3), dtype=int32, numpy=
  2. array([[1, 2, 3],
  3. [2, 3, 4],
  4. [3, 4, 5]], dtype=int32)>
  1. tf.broadcast_to(a,b.shape)
  1. <tf.Tensor: shape=(3, 3), dtype=int32, numpy=
  2. array([[1, 2, 3],
  3. [1, 2, 3],
  4. [1, 2, 3]], dtype=int32)>
  1. #计算广播后计算结果的形状,静态形状,TensorShape类型参数
  2. tf.broadcast_static_shape(a.shape,b.shape)
  1. TensorShape([3, 3])
  1. #计算广播后计算结果的形状,动态形状,Tensor类型参数
  2. c = tf.constant([1,2,3])
  3. d = tf.constant([[1],[2],[3]])
  4. tf.broadcast_dynamic_shape(tf.shape(c),tf.shape(d))
  1. <tf.Tensor: shape=(2,), dtype=int32, numpy=array([3, 3], dtype=int32)>
  1. #广播效果
  2. c+d #等价于 tf.broadcast_to(c,[3,3]) + tf.broadcast_to(d,[3,3])
  1. <tf.Tensor: shape=(3, 3), dtype=int32, numpy=
  2. array([[2, 3, 4],
  3. [3, 4, 5],
  4. [4, 5, 6]], dtype=int32)>

如果对本书内容理解上有需要进一步和作者交流的地方,欢迎在公众号”Python与算法之美”下留言。作者时间和精力有限,会酌情予以回复。

也可以在公众号后台回复关键字:加群,加入读者交流群和大家讨论。

image.png