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

tensorflow bias_add应用

时间:2017-07-22 19:53:46      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:alt   type   ssi   image   run   import   tensor   session   输出   

技术分享

import tensorflow as tf

a=tf.constant([[1,1],[2,2],[3,3]],dtype=tf.float32)
b=tf.constant([1,-1],dtype=tf.float32)
c=tf.constant([1],dtype=tf.float32)

with tf.Session() as sess:
    print(bias_add:)
    print(sess.run(tf.nn.bias_add(a, b)))
    #执行下面语句错误
    #print(sess.run(tf.nn.bias_add(a, c)))

    print(add:)
    print(sess.run(tf.add(a, c)))

输出结果:

bias_add:
[[ 2. 0.]
[ 3. 1.]
[ 4. 2.]]
add:
[[ 2. 2.]
[ 3. 3.]
[ 4. 4.]]

 

技术分享

 

tensorflow bias_add应用

标签:alt   type   ssi   image   run   import   tensor   session   输出   

原文地址:http://www.cnblogs.com/lovephysics/p/7222022.html

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