According to this wikipedia page:
https://en.wikipedia.org/wiki/Activation_function
the derivative of the Rectified linear unit (ReLU) function:
$$f(x) = 0 \text{ if }x<0; x \text{ otherwise }$$
has a value of $f'(0)=1$. This surprise me, because on this point I expected undefined derivate or something similar to delta Dirac (compare with the "binary step" function of same page).
Could someone explain why derivative is 1 and not undefined ?
For $$f(x) = 0 \text{ if }x<0; x \text{ otherwise }$$
at $x=0$ we have the right derivative $ f'_+(0) = 1$ and the left derivative $ f'_-(0) = 0$
Thus $f'(0)$ does not exist.