tf.cast(x, dtype, name=None)
参数
- x:输入
- dtype:转换目标类型
- name:名称
返回:Tensor
例子:
import tensorflow as tfa = [1,0,1,0]
b = [1,2,3,4]
c = [True, True, False]
d = tf.cast(a, dtype=bool)
e = tf.cast(b, dtype=bool)
f = tf.cast(c, dtype=tf.float32)
sess = tf.InteractiveSession()
print(sess.run(d)) # [ True False True False]
print(sess.run(e)) # [ True True True True]
print(sess.run(f)) # [1. 1. 0.]