Package org.encog.workbench.dialogs.createnetwork

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


  }

  private static MLMethod createSOM() {
    CreateSOMDialog dialog = new CreateSOMDialog(EncogWorkBench
        .getInstance().getMainWindow());
    if (dialog.process()) {
      SOMPattern som = new SOMPattern();
      som.setInputNeurons(dialog.getInputCount().getValue());
      som.setOutputNeurons(dialog.getOutputCount().getValue());
      return som.generate();
    } else
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.