本文整理汇总了Java中weka.core.Instances.classIndex方法的典型用法代码示例。如果您正苦于以下问题:Java Instances.classIndex方法的具体用法?Java Instances.classIndex怎么用?Java Instances.classIndex使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类weka.core.Instances
的用法示例。
在下文中一共展示了Instances.classIndex方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: loadInstanceFromPath
import weka.core.Instances; //导入方法依赖的package包/类
public void loadInstanceFromPath(String path) throws Exception {
DataSource source = new DataSource(path);
Instances data = source.getDataSet();
if (data.classIndex() == -1) {
data.setClassIndex(data.numAttributes() - 1);
}
this.value = data;
MiniMLLogger.INSTANCE.info("Dataset loaded with these attributes");
for (int i = 0; i < data.numAttributes(); i++)
{
MiniMLLogger.INSTANCE.info(data.attribute(i));
}
}
示例2: computeOmegaDelta
import weka.core.Instances; //导入方法依赖的package包/类
private static double computeOmegaDelta(M5P model, M5P modelPi, Instances omega) throws Exception{
double retval = 0., y;
Enumeration<Instance> enu = omega.enumerateInstances();
int idxClass = omega.classIndex();
Instance ins;
while(enu.hasMoreElements()){
ins = enu.nextElement();
y = ins.value(idxClass);
retval += Math.pow(y-model.classifyInstance(ins), 2)-Math.pow(y-modelPi.classifyInstance(ins), 2);
}
return retval;
}
示例3: loadDataset
import weka.core.Instances; //导入方法依赖的package包/类
public Instances loadDataset(String path) {
Instances dataset = null;
try {
dataset = ConverterUtils.DataSource.read(path);
if (dataset.classIndex() == -1) {
dataset.setClassIndex(dataset.numAttributes() - 1);
}
} catch (Exception ex) {
Logger.getLogger(ModelGenerator.class.getName()).log(Level.SEVERE, null, ex);
}
return dataset;
}