1 / 13
文档名称:

机器学习工具WEKA的使用总结,包括算法选择、属性选择、参数优化.docx

格式:docx   大小:144KB   页数:13页
下载后只包含 1 个 DOCX 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

分享

预览

机器学习工具WEKA的使用总结,包括算法选择、属性选择、参数优化.docx

上传人:今晚不太方便 2017/7/28 文件大小:144 KB

下载得到文件列表

机器学习工具WEKA的使用总结,包括算法选择、属性选择、参数优化.docx

文档介绍

文档介绍:一、属性选择:
1、理论知识:
见以下两篇文章:
数据挖掘中的特征选择算法综述及基于WEKA的性能比较_陈良龙
数据挖掘中约简技术与属性选择的研究_刘辉
2、weka中的属性选择
(attribute evaluator)
总的可分为filter和wrapper方法,前者注重对单个属性进行评价,后者侧重对特征子集进行评价。
Wrapper方法有:CfsSubsetEval
Filter方法有:CorrelationAttributeEval
Wrapper方法:
(1)CfsSubsetEval
根据属性子集中每一个特征的预测能力以及它们之间的关联性进行评估,单个特征预测能力强且特征子集内的相关性低的子集表现好。
Evaluates the worth of a subset of attributes by considering the individual predictive ability of each feature along with the degree of redundancy between of features that are highly correlated with the class while having low intercorrelation are preferred.
For more information see:
M. A. Hall (1998). Correlation-based Feature Subset Selection for Machine Learning. Hamilton, New Zealand.
(2)WrapperSubsetEval
Wrapper方法中,用后续的学****算法嵌入到特征选择过程中,通过测试特征
子集在此算法上的预测性能来决定其优劣,而极少关注特征子集中每个特征的预测性能。因此,并不要求最优特征子集中的每个特征都是最优的。
Evaluates attribute sets by using a learning scheme. Cross validation is used to estimate the accuracy of the learning scheme for a set of attributes.
For more information see:
Ron Kohavi, e H. John (1997). Wrappers for feature subset selection. Artificial Intelligence. 97(1-2):273-324.
Filter方法:
如果选用此评价策略,则搜索策略必须用Ranker。
(1)CorrelationAttributeEval
根据单个属性和类别的相关性进行选择。
Evaluates the worth of an attribute by measuring the correlation (Pearson's) between it and the class.
Nominal attributes are considered on a value by value basis by treating each value as an indicator. An overall correlation for a nominal attribute is arrived at via a weighted average.
(2)GainRatioAttributeEval
根据信息增益比选择属性。
Evaluates the worth of an attribute by measuring the gain ratio with respect to the class.
GainR(Class, Attribute) = (H(Class) - H(Class | Attribute)) / H(Attribute).
(3)InfoGainAttributeEval
根据信息增益选择属性。
Evaluates the worth of an attribute by measuring the information gain with respect to the class.
InfoGain(Class,Attribute) = H(Class) - H(Class | Attribute).
(4)OneRAttributeEval
根据OneR分类器评估属性。
Clas