码迷,mamicode.com
首页 > 其他好文 > 详细

tf.cast()的用法(转)

时间:2018-01-05 01:23:37      阅读:425      评论:0      收藏:0      [点我收藏+]

标签:ble   style   detail   python   格式   csdn   函数   cas   color   

一、函数 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]

------------------------------------------------------------

参考:

  1. http://blog.csdn.net/luoganttcc/article/details/70315538
  2. https://www.tensorflow.org/api_docs/python/tf/cast

tf.cast()的用法(转)

标签:ble   style   detail   python   格式   csdn   函数   cas   color   

原文地址:https://www.cnblogs.com/hezhiyao/p/8196587.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!