合理的特征选择(feature set selection)有时能给模型表现与解释性、简洁性带来益处。本文以gradient boosting machine和support vector machine为例展示此过程。
Applied Machine Learning Using mlr3 in R - 6 Feature Selection
mlr-org - Recursive Feature Elimination on the Sonar Data Set
‘Currently, RFE works with support vector machines (SVM), decision tree algorithms and gradient boosting machines (GBM). Supported learners are tagged with the "importance" property.’(RFE是基于重要度排序的)
RFE-CV是RFE的一种变体。‘RFE-CV estimates the optimal number of features with cross-validation first. Then one more RFE is carried out on the complet

本文介绍了特征递归消除(Recursive Feature Elimination, RFE)及其变体RFE-CV在特征选择中的应用,特别是在gradient boosting machine和support vector machine中的实践。RFE基于特征重要性进行排序,而RFE-CV则通过交叉验证预先确定最佳特征数量。在全数据集上训练最终模型后,观察到随着特征减少,性能先提升,去除关键特征后会下降。RFE-CV通过在每个重采样迭代中运行RFE并选择平均性能最佳的特征数量,从而确定最优特征集合。"
105838870,7761967,计算机原理:从图灵机到现代计算机,"['计算机历史', '计算机原理', '操作系统', '性能优化', '计算设备']
3531

被折叠的 条评论
为什么被折叠?



