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