Package org.encog.workbench.process

Examples of org.encog.workbench.process.TrainBasicNetwork


    }*/ else if (event.getActionCommand().equals(EncogMenus.TOOLS_BROWSE)) {
      owner.getOperations().performBrowse();
    } else if (event.getActionCommand().equals(EncogMenus.TOOLS_EVALUATE)) {
      owner.getOperations().performEvaluate();
    } else if (event.getActionCommand().equals(EncogMenus.TOOLS_TRAIN)) {
      TrainBasicNetwork t = new TrainBasicNetwork(null,null);
      t.performTrain();
    } else if (event.getActionCommand().equals(
        EncogMenus.TOOLS_VALIDATION_CHART)) {
      ValidationChart check = new ValidationChart();
      check.perform(EncogWorkBench.getInstance().getMainWindow());
    } else if (event.getActionCommand().equals(EncogMenus.TOOLS_BIN2EXTERNAL)) {
View Full Code Here


      EncogWorkBench.displayError("Error", t);
    }
  }

  private void performTrain() {
    TrainBasicNetwork t = new TrainBasicNetwork((ProjectEGFile)this.getEncogObject(),this);
    t.performTrain();
  }
View Full Code Here

TOP

Related Classes of org.encog.workbench.process.TrainBasicNetwork

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.