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

tensorflow Relu激活函数

时间:2017-07-21 19:59:01      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:frame   linear   view   unit   实现   span   函数   env   bsp   

1、Relu激活函数

Relu激活函数(The Rectified Linear Unit)表达式为:f(x)=max(0,x)

技术分享

2、tensorflow实现

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import tensorflow as tf

input_data = tf.constant( [[0, 10, -10],[-1,2,-3]] , dtype = tf.float32 )
output = tf.nn.relu(input_data)
sess=tf.Session()

print(sess.run(output))

输出为:

[[ 0. 10. 0.]
[ 0. 2. 0.]]

 

tensorflow Relu激活函数

标签:frame   linear   view   unit   实现   span   函数   env   bsp   

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

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