I want to make a simple neural network which uses the ReLU function. Can someone give me a clue of how can I implement the function using numpy.
This is more precise implementation:
def ReLU(x): return abs(x) * (x > 0)