Invertible

Trait Invertible 

Source
pub trait Invertible<T>: Transformer<T> {
    // Required method
    fn inv_transform(&self, inputs: T) -> Result<T, Error>;
}
Expand description

Trait for invertible data transformers

Required Methods§

Source

fn inv_transform(&self, inputs: T) -> Result<T, Error>

Maps the inputs using the inverse of the fitted transform.

Implementors§