这是我的功能
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)