如何从 gridSearchCV 的输出中获取特征名称
Posted
技术标签:
【中文标题】如何从 gridSearchCV 的输出中获取特征名称【英文标题】:How to get feature names from output of gridSearchCV 【发布时间】:2016-08-18 05:06:10 【问题描述】:我使用 sklearn 使用朴素贝叶斯实现了 PCA,并使用 GridSearchCV 优化了 PCA 的组件数量。
我试图找出最佳估计器的特征名称,但我无法做到。这是我尝试过的代码。
from sklearn.cross_validation import train_test_split
features_train, features_test, labels_train, labels_test = \
train_test_split(features, labels, test_size=0.3, random_state=42)
### A Naive Bayes classifier combined with PCA is used and its accuracy is tested
pca = decomposition.PCA()
#clf = GaussianNB()
clf = Pipeline(steps=[('pca', pca), ('gaussian_NB', GaussianNB())])
n_components = [3, 5, 7, 9]
clf = GridSearchCV(clf,
dict(pca__n_components=n_components))
# from sklearn.tree import DecisionTreeClassifier
#clf = DecisionTreeClassifier(random_state=0, min_samples_split=20)
clf = clf.fit(features_train, labels_train)
features_pred = clf.predict(features_test)
print "The number of components of the best estimator is ", clf.best_estimator_.named_steps['pca'].n_components
print "The best parameters:", clf.best_params_
#print "The best estimator", clf.best_estimator_.get_params(deep=True).gaussian_NB
# best_est = RFE(clf.best_estimator_)
# print "The best estimator:", best_est
estimator = clf.best_estimator_
print "The features are:", estimator['features'].get_feature_names()
【问题讨论】:
【参考方案1】:您似乎混淆了降维和特征选择。 PCA 是降维技术,它不选择特征,它寻找更低维度的线性投影。你得到的特征不是你原来的特征——它们是这些特征的线性组合。因此,如果您的原始特征在 PCA 变暗 2 之后是“宽度”、“高度”和“年龄”,那么您最终会得到“0.4 * 宽度 + 0.1 * 高度 - 0.05 * 年龄”和“0.3 * 高度 - 0.2 * 宽度”之类的特征”。
【讨论】:
我想这就是它没有按我预期的方式工作的原因。以上是关于如何从 gridSearchCV 的输出中获取特征名称的主要内容,如果未能解决你的问题,请参考以下文章
如何从 GridsearchCV 获取 feature_importances_
如何在 python 中的 sklearn 中获取 GridSearchCV 中的选定功能
从 gridsearchCV 中的 RFECV 检索选定的特征
如何从 Scikit-Learn 的详细输出中估计 GridSearchCV 的进度?