Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 454 Bytes

1.md

File metadata and controls

30 lines (21 loc) · 454 Bytes
@author jackzhenguo
@desc 实现 relu
@date 2019/2/10

1 实现 relu

在神经网络中,relu作为神经元的激活函数:

def relu(x):
    """
    x: 输入参数
    return:输出relu值
    """
    return max(0,x)                                                                 

测试:

relu(5) # 5

relu(-1) # 0
[下一个例子](2.md)