gpt4 book ai didi

python - 如何从 gridSearchCV 的输出中获取特征名称

转载 作者:行者123 更新时间:2023-11-30 08:54:47 25 4
gpt4 key购买 nike

我使用 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()

最佳答案

您似乎混淆了降维特征选择。 PCA是降维技术,它不选择特征,它寻找较低维的线性投影。你得到的特征不是你原来的特征——它们是这些特征的线性组合。因此,如果你的原始特征是“宽度”、“高度”和“年龄”,在 PCA 为暗淡 2 之后,你最终会得到诸如“0.4 * 宽度 + 0.1 * 高度 - 0.05 * 年龄”和“0.3 * 高度 - 0.2 * 宽度”的特征”。

关于python - 如何从 gridSearchCV 的输出中获取特征名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36829875/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com