Package weka.classifiers.timeseries.eval

Examples of weka.classifiers.timeseries.eval.ErrorModule


      // ignore out of range steps
      if (i < 0 || i >= preds.size()) {
        continue;
      }
      ErrorModule predsForStepI = preds.get(i);
      List<NumericPrediction> predsForTargetAtI = predsForStepI
          .getPredictionsForTarget(targetName);

      String step = "-steps";
      if (i == 0) {
        step = "-step";
View Full Code Here


      AbstractForecaster.stringToList(forecaster.getFieldsToForecast());
    m_confidenceLevel = confidenceLevel;
   
    List<ErrorModule> confidenceCalculators = new ArrayList<ErrorModule>();
    for (int i = 0; i < numSteps; i++) {
      ErrorModule m = new ErrorModule();
      m.setTargetFields(m_targetFields);
      confidenceCalculators.add(m);
    }
   
    Instances primeInsts = new Instances(insts, 0, numPrime);
/*    for (int i = 0; i < numPrime; i++) {
View Full Code Here

TOP

Related Classes of weka.classifiers.timeseries.eval.ErrorModule

Copyright © 2018 www.massapicom. 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.