美文网首页我爱编程
TensorFlow学习笔记1.6:tf.cast()

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

作者: HBU_DAVID | 来源:发表于2018-04-14 01:18 被阅读145次

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()

    本文链接:https://www.haomeiwen.com/subject/tkjkkftx.html