sqrtReL
sqrtReL, short for square-root Rectified Linear Unit, is an activation function used in neural networks. It is the composition of the ReLU nonlinearity with the square-root function, defined as f(x) = sqrt(max(0, x)). Equivalently, sqrtReL(x) = sqrt(ReLU(x)).
For x < 0, sqrtReL(x) = 0. For x > 0, sqrtReL(x) = sqrt(x). The function is continuous and nondecreasing.
sqrtReL is used as an elementwise activation after linear transformations. Compared with ReLU, sqrtReL introduces a
It is related to ReLU via the composition with the square-root function. It preserves nonnegativity like ReLU