TensorFlow学习笔记1.6:tf.cast()

Casts a tensor to a new type.
将张量转换为一种新类型
The operation casts x (in case of Tensor) or x.values (in case of SparseTensor) to dtype.
这个操作cast x(如:张量)或x.values (如sparse张量)到dtype。
For example:

x = tf.constant([1.8, 2.2], dtype=tf.float32)
tf.cast(x, tf.int32)  # [1, 2], dtype=tf.int32

浮点型 转换为 整形


TIM截图20180414012056.jpg

你可能感兴趣的:(TensorFlow学习笔记1.6:tf.cast())