Package org.encog.workbench.dialogs.createnetwork

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


      return null;
  }

 
  private static MLMethod createRBF() {
    CreateRBFDialog dialog = new CreateRBFDialog(EncogWorkBench
        .getInstance().getMainWindow());
    if (dialog.process()) {
      RBFEnum type = dialog.getRBFType();
      RadialBasisPattern rbf = new RadialBasisPattern();
      rbf.setInputNeurons(dialog.getInputCount().getValue());
      rbf.addHiddenLayer(dialog.getHiddenCount().getValue());
      rbf.setOutputNeurons(dialog.getOutputCount().getValue());
      rbf.setRBF(type);
      return rbf.generate();
    } else
      return null;
View Full Code Here

TOP

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

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.