1.tf.cast(x,dtype,name) 此函数的目的是为了将x数据,准换为dtype所表示的类型,例如tf.float32,tf.bool,tf.uint8等 example: import tensorflow as tf x = tf.Variable([True,True,False,False]) y = tf.cast(x,dtype = tf.float32) sess = tf.Session() init = tf.global_variables_initialize…