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

tensorflow softplus应用

时间:2017-07-22 11:01:23      阅读:2473      评论:0      收藏:0      [点我收藏+]

标签:color   import   output   函数表达式   img   div   log   with   bsp   

 

1、softplus函数表达式

技术分享

图像:

技术分享

2、tensorflow 举例

import tensorflow as tf

input=tf.constant([0,1,2,3],dtype=tf.float32)
output=tf.nn.softplus(input)

with tf.Session() as sess:
    print(input:)
    print(sess.run(input))
    print(output:)
    print(sess.run(output))
    sess.close()

 

输出结果:

input:
[ 0. 1. 2. 3.]
output:
[ 0.69314718    1.31326163      2.12692809    3.04858732]

 

tensorflow softplus应用

标签:color   import   output   函数表达式   img   div   log   with   bsp   

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

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