What is the gradient of relu(x) = max(0, x) with respect to x when x = 0 in pytorch?
Hi,
For relu at 0
, we return a gradient of 0
.
What is the gradient of relu(x) = max(0, x) with respect to x when x = 0 in pytorch?
Hi,
For relu at 0
, we return a gradient of 0
.