本文整理了Java中weka.core.Instances.remove()
方法的一些代码示例,展示了Instances.remove()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Instances.remove()
方法的具体详情如下:
包路径:weka.core.Instances
类名称:Instances
方法名:remove
[英]Removes the instance at the given position.
[中]移除给定位置处的实例。
代码示例来源:origin: Waikato/meka
Instances D = new Instances(new FileReader(args[0]));
Instance x = D.lastInstance();
D.remove(D.numInstances()-1);
int L = Integer.parseInt(args[1]);
D.setClassIndex(L);
代码示例来源:origin: net.sf.meka/meka
Instances D = new Instances(new FileReader(args[0]));
Instance x = D.lastInstance();
D.remove(D.numInstances()-1);
int L = Integer.parseInt(args[1]);
D.setClassIndex(L);
代码示例来源:origin: dice-group/NLIWOD
for(int i = 0; i < 100; i++){
Instance testquestion = data.get(i);
data.remove(i);
RT classifier = new RT();
classifier.buildClassifier(data);
内容来源于网络,如有侵权,请联系作者删除!