Skip to main content

Model

Trait Model 

Source
pub trait Model: ModelWeights {
    // Provided method
    fn new_session(&self) -> Session<'_, Self>
       where Self: Sized { ... }
}

Provided Methods§

Source

fn new_session(&self) -> Session<'_, Self>
where Self: Sized,

Implementors§

Source§

impl<T: ModelWeights> Model for T