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

Trait for data transformers

Required Methods

Transforms the inputs

Implementors

The Shuffler will transform the input Matrix by shuffling its rows in place.

Under the hood this uses a Fisher-Yates shuffle.