Package org.encog.workbench.dialogs.createnetwork

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


    return null;

  }
 
  private static MLMethod createADALINE() {
    CreateADALINEDialog dialog = new CreateADALINEDialog(EncogWorkBench
        .getInstance().getMainWindow());
    if (dialog.process()) {
      ADALINEPattern adaline = new ADALINEPattern();
      adaline.setInputNeurons(dialog.getNeuronCount().getValue());
      adaline.setOutputNeurons(dialog.getElementCount().getValue());
      return adaline.generate();
    } else
      return null;
  }
View Full Code Here

TOP

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

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.