Struct rusty_machine::learning::toolkit::activ_fn::Exp [] [src]

pub struct Exp;

Exponential activation function.

Trait Implementations

impl ActivationFunc for Exp
[src]

fn func(x: f64) -> f64

The activation function.

fn func_grad(x: f64) -> f64

The gradient of the activation function.

fn func_inv(x: f64) -> f64

The inverse of the activation function.