Examples of EstimatedPerformance


Examples of com.rapidminer.operator.performance.EstimatedPerformance

              double [] a1={res.get("RMSE"),res.get("MAE"),res.get("NMAE")};
              DoubleArrayDataRow row=new DoubleArrayDataRow(a1);
              a.addDataRow(row);
             
              PerformanceVector result1 = new PerformanceVector();
              EstimatedPerformance performance = new EstimatedPerformance("RMSE", a1[0],1,true);
              EstimatedPerformance performance1 = new EstimatedPerformance("MAE", a1[1],1,true);
              EstimatedPerformance performance2 = new EstimatedPerformance("NMAE", a1[2],1,true);

              result1.addCriterion(performance);
              result1.addCriterion(performance1);
              result1.addCriterion(performance2);
View Full Code Here

Examples of com.rapidminer.operator.performance.EstimatedPerformance

              double [] a1={result.get("AUC"),result.get("prec@5"),result.get("prec@10"), result.get("prec@15"),result.get("NDCG"),result.get("MAP")};
              DoubleArrayDataRow row=new DoubleArrayDataRow(a1);
              a.addDataRow(row);
             
            PerformanceVector result1 = new PerformanceVector();
            EstimatedPerformance performance = new EstimatedPerformance("AUC", a1[0],1,false);
            EstimatedPerformance performance1 = new EstimatedPerformance("prec@5", a1[1],1,false);
            EstimatedPerformance performance2 = new EstimatedPerformance("prec@10", a1[2],1,false);
            EstimatedPerformance performance3 = new EstimatedPerformance("prec@15", a1[3],1,false);
            EstimatedPerformance performance4 = new EstimatedPerformance("NDCG", a1[4],1,false);
            EstimatedPerformance performance5 = new EstimatedPerformance("MAP", a1[5],1,false);
            result1.addCriterion(performance);
            result1.addCriterion(performance1);
            result1.addCriterion(performance2);
            result1.addCriterion(performance3);
            result1.addCriterion(performance4);
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.