Package org.encog.app.analyst.csv

Examples of org.encog.app.analyst.csv.AnalystEvaluateRawCSV


    final MLRegression method = (MLRegression) EncogDirectoryPersistence
        .loadObject(resourceFile);

    final boolean headers = getScript().expectInputHeaders(evalID);

    final AnalystEvaluateRawCSV eval = new AnalystEvaluateRawCSV();
    eval.setScript(getScript());
    getAnalyst().setCurrentQuantTask(eval);
    eval.setReport(new AnalystReportBridge(getAnalyst()));
    eval.analyze(getAnalyst(), evalFile, headers, getProp()
        .getPropertyCSVFormat(
            ScriptProperties.SETUP_CONFIG_CSV_FORMAT));
    eval.process(outputFile, method);
    getAnalyst().setCurrentQuantTask(null);
    return eval.shouldStop();
  }
View Full Code Here


    final MLRegression method = (MLRegression)m;

    final boolean headers = getScript().expectInputHeaders(evalID);

    final AnalystEvaluateRawCSV eval = new AnalystEvaluateRawCSV();
    eval.setScript(getScript());
    getAnalyst().setCurrentQuantTask(eval);
    eval.setReport(new AnalystReportBridge(getAnalyst()));
    eval.analyze(getAnalyst(), evalFile, headers, getProp()
        .getPropertyCSVFormat(
            ScriptProperties.SETUP_CONFIG_CSV_FORMAT));
    eval.process(outputFile, method);
    getAnalyst().setCurrentQuantTask(null);
    return eval.shouldStop();
  }
View Full Code Here

TOP

Related Classes of org.encog.app.analyst.csv.AnalystEvaluateRawCSV

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.