计算整流线性单元导数的有效方法是什么?

时间:2017-01-11 16:16:17

标签: python-2.7 deep-learning

这是我的功能

def ReLU(x):
    y=x * (x > 0) 
    return y

计算衍生工具的有效方法是什么?

def DReLu(x):
    yp=1. * (x > 0)
    return  yp
当我使用这个衍生物

时,我遇到了这个问题
yp=1. * (x > 0) # the problem is here RuntimeWarning: invalid value encountered in greater yp=1. * (x > 0)

0 个答案:

没有答案