一、函数 tf.cast()
cast( x, dtype, name=None )
将x的数据格式转化成dtype.例如,原来x的数据格式是bool,
那么将其转化成float以后,就能够将其转化成0和1的序列。反之也可以
二、例子
【code】
a = tf.Variable([1,0,0,1,1]) b = tf.cast(a,dtype=tf.bool) sess = tf.Session() sess.run(tf.initialize_all_variables()) print(sess.run(b)) #[ True False False True True]
------------------------------------------------------------
参考:
- http://blog.csdn.net/luoganttcc/article/details/70315538
- https://www.tensorflow.org/api_docs/python/tf/cast
原文地址:https://www.cnblogs.com/hezhiyao/p/8196587.html
时间: 2024-10-17 08:32:01