TensorFlow 张量变换
TensorFlow提供以下几种张量数据类型变换函数
- tf.string_to_number
- tf.to_double
- tf.to_float
- tf.to_bfloat16
- tf.to_int32
- tf.to_int64
- tf.cast
- tf.bitcast
- tf.saturate_cast
说明:
tf.to_float(
x,
name='ToFloat'
)
- 以tf.to_float为例,输入的x是tensor,所以一般需要通过tf.convert_to_tensor将python对象转化为tensor作为输入
- 返回的结果是类型对应函数名的tensor