Package org.encog.workbench.dialogs.createnetwork

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


  public static void process(File path) {
    MLMethod network = null;
    CreateNeuralNetworkDialog dialog = new CreateNeuralNetworkDialog(
        EncogWorkBench.getInstance().getMainWindow());
    dialog.setType(NeuralNetworkType.Feedforward);
    if (dialog.process()) {
      switch (dialog.getType()) {
      case Automatic:
        createAutomatic();
        network=null;
        break;
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.