pub trait Predict<I, O>
where I: ?Sized,
{ // Required method fn predict(&mut self, input: &I) -> O; }
Expand description

An interface to apply a trained model.

Required Methods§

source

fn predict(&mut self, input: &I) -> O

Implementors§