Package org.encog.workbench.dialogs.createnetwork

Examples of org.encog.workbench.dialogs.createnetwork.CreateSOMDialog


    } else
      return null;
  }

  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
      return null;
  }
View Full Code Here

TOP

Related Classes of org.encog.workbench.dialogs.createnetwork.CreateSOMDialog

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.