功能缩放是否会影响分类器的性能?

时间:2015-10-01 15:42:03

标签: machine-learning scikit-learn feature-extraction

为什么在扩展功能时,我的分类器的性能平均下降了1%?我期待着提高性能。我正在使用scikit-learn来解决这个问题。我是这样做的:

scaler = preprocessing.StandardScaler(with_mean=False).fit(X_features)

X_features_scaled =  scaler.transform(X_features)

0 个答案:

没有答案