pub trait UnsupervisedEstimator<X, P> {
// Required method
fn fit(x: &X, parameters: P) -> Result<Self, Failed>
where Self: Sized,
P: Clone;
}
Expand description
An estimator for unsupervised learning, that provides method fit
to learn from data
Required Methods§
Implementors§
impl<T: Number + RealNumber, M: Array2<T>> UnsupervisedEstimator<M, StandardScalerParameters> for StandardScaler<T>
During fit
the StandardScaler
computes the column means and standard deviation.