deephyper.skopt.space.transformers.Transformer# class deephyper.skopt.space.transformers.Transformer[source]# Bases: object Base class for all 1-D transformers. Methods fit Initialize the transformer with current X. inverse_transform Reverse the transformation. transform Applies the transformation. fit(X)[source]# Initialize the transformer with current X. inverse_transform(X)[source]# Reverse the transformation. transform(X)[source]# Applies the transformation.