Trait rusty_machine::data::transforms::Invertible
[−]
[src]
pub trait Invertible<T>: Transformer<T> {
fn inv_transform(&self, inputs: T) -> Result<T, Error>;
}Trait for invertible data transformers
Required Methods
fn inv_transform(&self, inputs: T) -> Result<T, Error>
Maps the inputs using the inverse of the fitted transform.
Implementors
impl<T: Float> Invertible<Matrix<T>> for MinMaxScaler<T>impl<T: Float + FromPrimitive> Invertible<Matrix<T>> for Standardizer<T>