Package org.encog.app.analyst

Examples of org.encog.app.analyst.EncogAnalyst.executeTask()


    encog.addAnalystListener(new ConsoleAnalystListener());
    AnalystWizard wiz = new AnalystWizard(encog);
   
    wiz.wizard(url, analystFile, rawFile, false, AnalystFileFormat.DECPNT_COMMA);

    encog.executeTask("task-full");
   
    encog.save(analystFile);
   
    AnalystReport report = new AnalystReport(encog);
    report.produceReport(new File(dir,"report.html"));
View Full Code Here


    AnalystWizard wiz = new AnalystWizard(encog);
    wiz.setTaskBalance(true);
   
    wiz.wizard(url, analystFile, rawFile, false, AnalystFileFormat.DECPNT_COMMA);
   
    encog.executeTask("task-full");
   
    encog.save(analystFile);
   
    AnalystReport report = new AnalystReport(encog);
    report.produceReport(new File(dir,"report.html"));
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.