Source code for autoflow.pipeline.components.preprocessing.reduce.pca

from autoflow.pipeline.components.feature_engineer_base import AutoFlowFeatureEngineerAlgorithm

__all__=["PCA"]

[docs]class PCA(AutoFlowFeatureEngineerAlgorithm): class__ = "PCA" module__ = "sklearn.decomposition"