Source code for autoflow.pipeline.components.preprocessing.scale.minmax
from autoflow.pipeline.components.feature_engineer_base import AutoFlowFeatureEngineerAlgorithm
__all__=["MinMaxScaler"]
[docs]class MinMaxScaler(AutoFlowFeatureEngineerAlgorithm):
class__ = "MinMaxScaler"
module__ = "sklearn.preprocessing"