Trait gad::net::CheckNet[][src]

pub trait CheckNet: Net<Check> {
    fn check(&self, input: Self::Input) -> Result<Self::Output> { ... }
}

Extensions trait when the algebra is crate::Check.

Provided methods

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

Run a forward pass that only checks dimensions.

Loading content...

Implementors

impl<N> CheckNet for N where
    N: Net<Check>, 
[src]

Loading content...