pub struct PipelineModel<M> {
pub normaliser_model: RangeNormaliserModel,
pub classifier_model: M,
}Fields§
§normaliser_model: RangeNormaliserModel§classifier_model: MImplementations§
Source§impl<M> PipelineModel<M>where
M: Predictor,
impl<M> PipelineModel<M>where
M: Predictor,
pub fn predict_scores(&self, xq: &Matrix) -> FrResult<Matrix>
pub fn predict(&self, xq: &Matrix) -> FrResult<Labels>
pub fn predict_proba(&self, xq: &Matrix) -> FrResult<PredictProbaOutput>
Auto Trait Implementations§
impl<M> Freeze for PipelineModel<M>where
M: Freeze,
impl<M> RefUnwindSafe for PipelineModel<M>where
M: RefUnwindSafe,
impl<M> Send for PipelineModel<M>where
M: Send,
impl<M> Sync for PipelineModel<M>where
M: Sync,
impl<M> Unpin for PipelineModel<M>where
M: Unpin,
impl<M> UnwindSafe for PipelineModel<M>where
M: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more