本文整理匯總了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;
}