pub trait ArgminWrite {
    type Param;

    fn write(&self, _: &Self::Param) -> Result<(), Error>;
}
Expand description

Every writer (which is something that writes parameter vectors somewhere after each iteration) needs to implement this.

Required Associated Types

Required Methods

Writes the parameter vector somewhere

Implementors