MultiTaskEstimator

Trait MultiTaskEstimator 

Source
pub trait MultiTaskEstimator<C, E, F, X, Y>: Estimator<Config = C, Error = E, Float = F> + Predict<X, Y> { }
Expand description

A trait that combines the Estimator and Predict traits.

Implementors§

Source§

impl<T, C, E, F, X, Y> MultiTaskEstimator<C, E, F, X, Y> for T
where T: Estimator<Config = C, Error = E, Float = F> + Predict<X, Y>,