Trait HasLibLinearProblem

Source
pub trait HasLibLinearProblem {
    type Output: LibLinearProblem;

    // Required method
    fn problem(&self) -> Option<&Self::Output>;
}
Expand description

Required Associated Types§

Required Methods§

Source

fn problem(&self) -> Option<&Self::Output>

The problem associated with the model/cross-validator.

This will return None when called on a model that was deserialized/loaded from disk.

Implementors§