WEKA教程完整版(新)资料.ppt

  1. 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
  2. 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  3. 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Note on nominal classes: If youre interested in the distribution over all the classes, use the method distributionForInstance(Instance). This method returns a double array with the probability for each class. The returned double value from classifyInstance (or the index in the array returned by distributionForInstance) is just the index for the string values in the attribute. I.e., if you want the string representation for the above returned class label clsLabel, then you can, e.g., print it like this: System.out.println(clsLabel + - + unlabeled.classAttribute().value((int) clsLabel)); Building a Clusterer Batch 和分类器用buildClassifier(Instances) 建立类似,聚类(器)用buildClusterer(Instances) 建立。下列代码片段(code snippet )实现了EM聚类算法,最大迭代次数为100 import weka.clusterers.EM; ... String[] options = new String[2]; options[0] = -I; // max. iterations options[1] = 100; EM clusterer = new EM(); // new instance of clusterer clusterer.setOptions(options); // set the options clusterer.buildClusterer(data); // build the clusterer Building a Clusterer Incremental 实现了weka.clusterers.UpdateableClusterer接口的聚类器可以进行增量聚类。 训练增量式聚类器的过程: Call buildClusterer(Instances) with the structure of the dataset (may or may not contain any actual data rows). Subsequently call the updateClusterer(Instance) method to feed the clusterer one by one. Call updateFinished() after all Instance objects have been processed, for the clusterer to perform additional computations. 示例 // load data ArffLoader loader = new ArffLoader(); loader.setFile(new File(/some/where/data.arff)); Instances structure = loader.getStructure(); ? // train Cobweb Cobweb cw = new Cobweb(); cw.buildClusterer(structure); Instance current; while ((current = loader.getNextInstance(structure)) != null) cw.updateClusterer(current); cw.updateFinished(); Evaluating a clusterer 可用ClusterEvaluation 类评价一个聚类器。以下代码片段输出了算法发现的类的个数。 import weka.clusterers.ClusterEvaluation; import weka.clusterers.Clusterer; ... ClusterEvaluation eval =

文档评论(0)

33894522 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档