Trait gad::net::EvalNet[][src]

pub trait EvalNet: Net<Eval> {
    fn evaluate(&self, input: Self::Input) -> Result<Self::Output> { ... }
}

Extensions trait when the algebra is crate::Eval.

Provided methods

fn evaluate(&self, input: Self::Input) -> Result<Self::Output>[src]

Run a forward pass to evaluate the network on the given input.

Loading content...

Implementors

impl<N> EvalNet for N where
    N: Net<Eval>, 
[src]

Loading content...