pub fn tanh_derivative(x: f32) -> f32
Expand description

Calculates the derivative of the hyperbolic tangent activation function for a given input.

Arguments

  • x - A 32-bit float input value.

Example

let x = 0.5;
let result = cgl_rs::math::activations::tanh_derivative(x);
println!("tanh_derivative({}) = {}", x, result);