Package org.encog.workbench.dialogs.createnetwork

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


      }
    }
  }

  private static MLMethod createPNN() {
    CreatePNN dialog = new CreatePNN();
    if( dialog.process() ) {
      PNNPattern pattern = new PNNPattern();
      pattern.setInputNeurons(dialog.getInputCount().getValue());
      pattern.setOutputNeurons(dialog.getOutputCount().getValue());
      pattern.setKernel(dialog.getKernelType());
      pattern.setOutmodel(dialog.getOutputModel());
      return pattern.generate();
    }
    return null;
  }
View Full Code Here

TOP

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

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.