pub fn relu_smooth_derivative(x: f32) -> f32
Calculates the derivative of the smooth ReLU activation function for a given input.
x
let x = 0.5; let result = cgl_rs::math::activations::relu_smooth_derivative(x); println!("relu_smooth_derivative({}) = {}", x, result);