第四章 TensorFlow 基础 笔记1

2019-12-03  本文已影响0人  晨光523152

这一章介绍TensorFlow中的所有运算操作。

4.1 数据类型

TensorFlow中的基本数据类型:数值型,字符串型和布尔型。

4.1.1 数值类型

#创建标量
a = tf.constant(1.2)
#创建向量
x = tf.constant([1, 2, 3.3])
x
#输出结果为
<tf.Tensor: id=1, shape=(3,), dtype=float32, 
numpy=array([1. , 2. , 3.3], dtype=float32)>

其中:id 是TensorFlow中内部索引对象的编号,shape表示张量的形状,dtype表示张量的数值精度,张量nimpy()方法可以返回 Numpy.array 类型的数据

x.numpy()
#输出结果为
array([1. , 2. , 3.3], dtype=float32)
a = tf.constant([[1, 2],[3, 4]])
a = tf.constant([[[1,2],[3,4]],[[5,6],[7,8]]])
a
#输出的结果为
<tf.Tensor: id=5, shape=(2, 2, 2), dtype=int32, numpy=
array([[[1, 2],
        [3, 4]],

       [[5, 6],
        [7, 8]]])>

4.1.2 字符串类型

a = tf.constant('Hello, Deep Learning.')
a
#输出的结果为
<tf.Tensor: id=6, shape=(), dtype=string, numpy=b'Hello, Deep Learning.'>
tf.string.lower(a)
#输出结果为
<tf.Tensor: id=7, shape=(), dtype=string, numpy=b'hello, deep learning.'>

书上说:


字符串类型图

之后,或许抽时间去看看 tf.strings API总结一下吧

4.1.3 布尔值类型

为了方便表达比较运算操作的结果,TensorFlow 还支持布尔类型(Boolean,bool)的张量。
布尔类型的张量只需要传入Python语言的布尔类型数据,转换成TensorFlow内部布尔类型

a = tf.constant(True)
#输出的结果为
<tf.Tensor: id=8, shape=(), dtype=bool, numpy=True>

4.2 数值精度

对于大部分深度学习算法,一般使用 tf.int32,tf.float32可满足运算精度要求;部分对精度要求较高的算法,如强化学习,可以选择使用 tf.int64,tf.float64精度保存张量。

tf.constant(123456789, dtype = tf.int32)
<tf.Tensor: id=19, shape=(), dtype=int32, numpy=123456789>

4.2.1 读取精度

通过访问张量的 dtype 成员属性可以判断张量的保存精度。

a = tf.constant(123456789, dtype = tf.int32)
a.dtype
#输出的结果为
tf.int32

通过 tf.dtypes.cast 修改张量的 dtype 属性。

tf.dtypes.cast(
      x,
      dtype,
      name=None
)
x = tf.constant([1.8, 2.2], dtype = tf.float32)
tf.dtypes.cast(x, dtype = tf.int32)
#输出结果为
<tf.Tensor: id=22, shape=(2,), dtype=int32, numpy=array([1, 2])>

4.3 待优化张量

为了区分需要计算梯度信息的张量与不需要计算梯度信息的张量,TensorFlow增加了 tf.Variable 数据类型来支持梯度信息的记录。

tf.Variable 类型在普通的张量类型基础上添加了 name,trainable 等属性来支持计算图的构建

a = tf.constant([-1, 0, 1, 2])
aa = tf.Variable(a)
aa.name, aa.trainable
# 输出的结果为
('Variable:0', True)

其中:name 属性是用于命名计算图中的变量,这套命名体系是 TensorFlow 内部维护的,一般不需要用户关注 name 属性 (但是,在自己写一个自定义的layers,在 bulid 函数中 name 是不可或缺的);trainable 表征当前张量是否需要被优化,创建 Variable 对象是默认启用优化的标志,可以设置 trainable = False 来设置张量不需要被优化。

还可以直接创建 tf.Variable

a = tf.Variable([[1,2],[3,4]])
a
# 输出结果为
<tf.Variable 'Variable:0' shape=(2, 2) dtype=int32, numpy=
array([[1, 2],
       [3, 4]])>

4.4 创建张量

4.4.1 从Numpy,List对象创建

Numpy Array 数组和 Python List 需要通过 tf.convert_to_tensor 转换到 Tensor 类型。

tf.convert_to_tensor([1,2.])
#输出结果为
<tf.Tensor: id=39, shape=(2,), dtype=float32, numpy=array([1., 2.], dtype=float32)>
In [ ]:
tf.convert_to_tensor(np.array([[1,2],[3,4]]))
#输出结果为
<tf.Tensor: id=40, shape=(2, 2), dtype=int32, numpy=
array([[1, 2],
       [3, 4]])>

4.4.2 创建全0,全1张量

tf.zeros() 和 tf.ones()

4.4.3 创建自定义数值张量

有时需要全部初始化为某个自定义数值张量,比如将张量的数值全部初始化为-1等。
可以通过 tf.fill创建全为自定义数值的张量。

tf.fill(
    dims,
    value,
    name=None)
#标量
tf.fill([],-1)
#输出结果为
<tf.Tensor: id=43, shape=(), dtype=int32, numpy=-1>
#向量
tf.fill([2],-1)
#输出结果为
<tf.Tensor: id=46, shape=(2,), dtype=int32, numpy=array([-1, -1])>
#矩阵
tf.fill([5,6],-1)
#输出结果为
<tf.Tensor: id=49, shape=(5, 6), dtype=int32, numpy=
array([[-1, -1, -1, -1, -1, -1],
       [-1, -1, -1, -1, -1, -1],
       [-1, -1, -1, -1, -1, -1],
       [-1, -1, -1, -1, -1, -1],
       [-1, -1, -1, -1, -1, -1]])>

4.4.4 创建已知分布的张量

通过 tf.random.normal 和 tf.random.uniform 创建正态分布(Normal Distribution 或者 Gaussian Distribution)和高斯分布(Uniform Distribution)。

tf.random.normal(
      shape,
      mean = 0.0,
      stddv = 1.0,
      dtype = tf.dtypes.float32,
      seed = None,
      name = None
)
tf.random.uniform(
      shape,
      minval = 0,
      maxval = None,
      dtype = tf.dtypes.float32,
      seed = None,
      name = None
)
tf.random.normal([2,2])
#输出结果为
<tf.Tensor: id=55, shape=(2, 2), dtype=float32, numpy=
array([[-1.1263858 ,  0.87060237],
      [-0.45420638, -0.32954565]], dtype=float32)>
tf.random.normal([2,2],mean = 1,stddev=2)
#输出结果为
<tf.Tensor: id=61, shape=(2, 2), dtype=float32, numpy=
array([[4.8935857, 2.1483226],
      [0.5717739, 2.2051687]], dtype=float32)>
tf.random.uniform([2,2])
#输出结果为
<tf.Tensor: id=68, shape=(2, 2), dtype=float32, numpy=
array([[0.8220825 , 0.3613026 ],
       [0.8072839 , 0.47967374]], dtype=float32)>
tf.random.uniform([2,2], maxval=100, dtype= tf.int32)
#输出结果为
<tf.Tensor: id=83, shape=(2, 2), dtype=int32, numpy=
array([[15, 91],
       [ 1, 25]])>

4.4.5 创建序列

tf.range(
      start,
      limits,
      delta = 1,
      dtype = None,
      name = 'range',
)

通过 tf.range() 函数可以创建 [0, limit)之间,步长为 delta 的整形序列,不包含 limit本身。

创建0~9,步长为1的整形序列:

tf.range(10)
#输出结果为
<tf.Tensor: id=92, shape=(10,), dtype=int32, numpy=array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])>

4.5 张量的典型应用

参考资料:https://github.com/dragen1860/Deep-Learning-with-TensorFlow-book

上一篇下一篇

猜你喜欢

热点阅读