tensorflow入门:张量(上)

tf.constant()

tf.constant()函数可以简单快速地创建一个张量,格式为:tf.constant(value, dtype, shape)
value : 张量的值,可以为数字/pyhton列表/Numpy数组
dtype : 元素的类型
shape : 形状,当shape为空时,表示张量为标量

例:
tensorflow入门:张量(上)_第1张图片

tf.cast(x, dtype)

tf.cast()可以对张量的数据类型进行转换,一般是从低精度向高精度类型进行转换,否则可能会出现数据溢出的情况。
tensorflow入门:张量(上)_第2张图片
通过tf.cast,还可以将整型转化为 bool类型:
tensorflow入门:张量(上)_第3张图片
当数据的值不为1或0时,将非0的值都转换为True:
tensorflow入门:张量(上)_第4张图片

tf.convert_to_tensor()

tf.convert_to_tensor()函数可以将numpy数组转换成张量:
tensorflow入门:张量(上)_第5张图片

tf.is_tensor()

检测是否为张量:
在这里插入图片描述

isinstance()

isinstance与is_tensor比较相似,但功能更强大,用法相对复杂
tensorflow入门:张量(上)_第6张图片

tf.zeros() 和 tf.ones()

tf.zeros()用于创建值全为0的张量;tf.ones()则用于创建值全为1的张量,数据类型默认为float32,两者用法是一样的
tensorflow入门:张量(上)_第7张图片

tf.fill()

tf.fill()用于创建元素值都相同的张量
tf.fill ( dims, value ) dims为张量的形状,value为张量的值
tensorflow入门:张量(上)_第8张图片用tf.constant()同样可以做到:
tensorflow入门:张量(上)_第9张图片

在下一篇博客会写到创建随机数张量等高级用法,如有错漏,请多多指教!

你可能感兴趣的:(人工智能)