Examples of CSVData


Examples of nl.vu.few.anytimereasoning.workbench.measures.utils.CSVData

          String[] parts = line.split(",");
          String recall = parts[0].trim();
          String iterationTime = parts[1].trim();
          String goldStandardRuntime = parts[2].trim();

          CSVData values = new CSVData();
          values.setIterationRuntime(Double.valueOf(iterationTime));
          values.setRecall(Double.valueOf(recall));
          values.setGoldStandardRuntime(Double
              .valueOf(goldStandardRuntime));
          objects.add(values);
        }
      }
      reader.close();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.