pub trait TransformFitter<U, T: Transformer<U>> {
    fn fit(self, inputs: &U) -> LearningResult<T>;
}
Expand description

A trait used to construct Transformers which must first be fitted

Required Methods

Fit the inputs to create the Transformer

Implementors