logo

Trait neuronika::nn::DropoutInput[][src]

pub trait DropoutInput {
    type Output;
    fn dropout(self, p: f64, status: Rc<Cell<bool>>) -> Self::Output;
}
Expand description

Dropout input.

This trait is implemented by Var and VarDiff.

Associated Types

Required methods

Implementors