当前位置: 代码迷 >> 综合 >> tensorflow的tf.nn.relu()函数
  详细解决方案

tensorflow的tf.nn.relu()函数

热度:9   发布时间:2023-12-08 17:46:01.0

tf.nn.relu()函数是将大于0的数保持不变,小于0的数置为0

import tensorflow as tfa = tf.constant([-2,-1,0,2,3])
with tf.Session() as sess:print(sess.run(tf.nn.relu(a)))

结果是

[0 0 0 2 3]

又如

import tensorflow as tfa = tf.constant([[-2,-4],[4,-2]])
with tf.Session() as sess:print(sess.run(tf.nn.relu(a)))

输出结果为

[[0 0][4 0]]

relu的图像是这样的(下载自百度)

 

这样做的目的我目前不清楚。

激活函数的一些介绍

激活函数的百度百科

 

  相关解决方案