Package org.encog.workbench.dialogs.createnetwork

Examples of org.encog.workbench.dialogs.createnetwork.CreateJordanDialog.process()


  }

  private static MLMethod createJordan() {
    CreateJordanDialog dialog = new CreateJordanDialog(EncogWorkBench
        .getInstance().getMainWindow());
    if (dialog.process()) {
      JordanPattern jordan = new JordanPattern();
      jordan.setInputNeurons(dialog.getInputCount().getValue());
      jordan.addHiddenLayer(dialog.getHiddenCount().getValue());
      jordan.setOutputNeurons(dialog.getOutputCount().getValue());
      jordan.setActivationFunction(new ActivationTANH());
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.