Source code for autoflow.pipeline.components.preprocessing.impute.fill_num
from autoflow.pipeline.components.feature_engineer_base import AutoFlowFeatureEngineerAlgorithm
__all__ = ["FillNum"]
[docs]class FillNum(AutoFlowFeatureEngineerAlgorithm):
class__ = "BaseImputer"
module__ = "sklearn.impute"