Examples of printPredictionsForTrainingData()


Examples of weka.classifiers.timeseries.eval.TSEvaluation.printPredictionsForTrainingData()

            throw new Exception("Cannot output predictions for \""
                + targetName + "\" because that field is not being predicted.");
          }
          if (eval.getTrainingData() != null &&
              eval.getEvaluateOnTrainingData()) {
            String predString = eval.printPredictionsForTrainingData("=== Predictions " +
                "for training data: " + targetName + " ("
                + step + (step > 1 ? "-steps ahead)" : "-step ahead)") + " ===",
                targetName, step, eval.getPrimeWindowSize());
            outBuff.append("\n").append(predString);
          }             
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.