标签: 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)