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

tensorflow elu函数应用

时间:2017-07-22 11:03:54      阅读:318      评论:0      收藏:0      [点我收藏+]

标签:type   应用   on()   style   flow   pre   close   结果   技术分享   

1、elu函数

技术分享

 

图像:

技术分享

2、tensorflow elu应用

 

import tensorflow as tf

input=tf.constant([0,-1,2,-3],dtype=tf.float32)
output=tf.nn.elu(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. -0.63212055 2. -0.95021296]

 

tensorflow elu函数应用

标签:type   应用   on()   style   flow   pre   close   结果   技术分享   

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

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