relu_prime
Derivation of the relu activation function.
f’(x) = 0 if x < 0
f’(x) = 1 if x > 0
x (Tensor) – input to the function
Tensor
f’(x), applies derivation of activation function