Package org.encog.workbench.dialogs.common

Examples of org.encog.workbench.dialogs.common.IntegerField


  public CreateJordanDialog(Frame owner) {
    super(owner);
    setTitle("Create Jordan Network");
    setSize(400,400);
    setLocation(200,200);
    addProperty(this.inputCount = new IntegerField("input neurons","Input Neuron Count",true,1,100000));
    addProperty(this.hiddenCount = new IntegerField("input neurons","Hidden Neuron Count",true,1,100000));
    addProperty(this.outputCount = new IntegerField("input neurons","Output Neuron Count",true,1,100000));
    render();
  }
View Full Code Here


  public CreateADALINEDialog(Frame owner) {
    super(owner);
    setTitle("Create ADALINE Network");
    setSize(400,400);
    setLocation(200,200);
    addProperty(this.neuronCount = new IntegerField("neurons","Neuron Count",true,1,100000));
    addProperty(this.elementCount = new IntegerField("elements","ADALINE Output Elements",true,1,-1));
    render();
  }
View Full Code Here

TOP

Related Classes of org.encog.workbench.dialogs.common.IntegerField

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.