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§
Sourcefn inv_transform(&self, inputs: T) -> Result<T, Error>
fn inv_transform(&self, inputs: T) -> Result<T, Error>
Maps the inputs using the inverse of the fitted transform.