标签:ESS tran 整数 lin pre and 笔记 drop func
Pipeline()或 make_pipeline
pipe.steps[0]
StandardScaler().fit(train)获得变换器,可以应用到测试集scaler.transform(test)
稀疏数据可以用MaxAbsScaler 以及 StandardScaler(但是需要with_mean=False)
可以用RobustScaler
KernelCenter
PowerTransformer提供两个变换
preprocessing.KBinsDiscretizer(n_bins=[],encode=‘ordinal‘)
preprocessing.Binarizer(threshold=1.1).fit(X)
poly = PolynomialFeatures(2)
poly.fit_transform(X)
transformer = FunctionTransformer(np.log1p, validate=True)
标签:ESS tran 整数 lin pre and 笔记 drop func
原文地址:https://www.cnblogs.com/zhouyu0-0/p/12234785.html