我爱编程

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

2018-04-14  本文已影响145人  HBU_DAVID

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
上一篇下一篇

猜你喜欢

热点阅读