def ReLU(x): y = np.maximum(0, x) return y
def ReLu(x): new_x = [] for i in x: new_x.append(max(0.0, x)) return new_x