tf.cast(x,dtype,name=None )
功能:数据类型转换
参数:(1)x:需要转换数据类型的对象(2)dtype:转换至此数据类型
例子:
import tensorflow as tf
a=[[9.5,2.7],[1,2]]
b=tf.cast(a,tf.int32)
with tf.Session() as sess:
print(sess.run(b))
结果:
[[9 2]
[1 2]]
tf.cast(x,dtype,name=None )
功能:数据类型转换
参数:(1)x:需要转换数据类型的对象(2)dtype:转换至此数据类型
例子:
import tensorflow as tf
a=[[9.5,2.7],[1,2]]
b=tf.cast(a,tf.int32)
with tf.Session() as sess:
print(sess.run(b))
结果:
[[9 2]
[1 2]]