Examples of ComboBoxField


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

    list.add("RPROP-");
    list.add("iRPROP+");
    list.add("iRPROP-");
   
    setTitle("Train Resilient Propagation");
    addProperty(this.rpropType = new ComboBoxField("rprop type", "RPROP Type",true,list));
    addProperty(this.maxStep = new DoubleField("max step","Max Step",true,0,-1));
    addProperty(this.initialUpdate = new DoubleField("initial update","Initial Update",true,0,-1));
    render()
    this.maxStep.setValue(RPROPConst.DEFAULT_MAX_STEP);
    this.initialUpdate.setValue(RPROPConst.DEFAULT_INITIAL_UPDATE);
View Full Code Here

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

    super(EncogWorkBench.getInstance().getMainWindow());
    findData();
    setTitle("Train NEAT Population");
    setSize(500,400);
    setLocation(200,200);
    addProperty(this.comboTraining = new ComboBoxField("training set","Training Set",true,this.trainingSets));
    addProperty(this.comboPopulation = new ComboBoxField("population","NEAT Population",true,this.populations));
    addProperty(this.loadToMemory = new CheckField("load to memory",
      "Load to Memory (better performance)"));
    addProperty(this.maxError = new DoubleField("max error",
        "Maximum Error Percent(0-100)", true, 0, 100));
View Full Code Here

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

    list.add("2D RBF - Multiquadric");
    list.add("2D RBF - InverseMultiquadric");
   
    setTitle("Train SOM Network");
    addProperty(this.learningRate = new DoubleField("learning rate","Learning Rate",true,0,-1));
    addProperty(this.neighborhoodType = new ComboBoxField("neighborhood","Neighborhood Type",true,list));
    addProperty(this.rbfWidth = new DoubleField("rbf width","RBF Width",true,0,1000));
    addProperty(this.cols = new IntegerField("cols", "2D RBF Columns",true,0,1000000));
    addProperty(this.rows = new IntegerField("rows", "2D RBF Rows",true,0,1000000));
    addProperty(this.forceWinner = new CheckField("force winner","Force Winner"));
    render();
View Full Code Here

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

    this.setCollectCurrentTabOnly(true);
       
    this.beginTab("Randomize");
    addProperty(this.high = new DoubleField("high","High Range",true,0,-1));
    addProperty(this.low = new DoubleField("low","Low Range",true,0,-1));
    addProperty(this.type = new ComboBoxField("type","Type",true,types));
    this.beginTab("Perturb");
    addProperty(this.perturbPercent = new DoubleField("perturb percent","Perturb Percent",true,0,-1));
    this.beginTab("Gaussian");
    addProperty(this.mean = new DoubleField("mean","Mean",true,0,-1));
    addProperty(this.deviation = new DoubleField("standard deviation","Standard Deviation",true,0,-1));
View Full Code Here

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

   
    this.setSize(640, 200);
    this.setTitle("Export Image");
   
    addProperty(this.targetFile = new FileField("target file","Target File",true,true,null));
    addProperty(this.fileType = new ComboBoxField("type type", "Export File Type",true,list));
    addProperty(this.height = new IntegerField("height","Image Height (pixels)",true,32,Integer.MAX_VALUE));
    addProperty(this.width = new IntegerField("width","Image Width (pixels)",true,32,Integer.MAX_VALUE));
    render();
  }
View Full Code Here

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

    super(owner);
    findData();
    setTitle("Network and Training Set");
    setSize(400,400);
    setLocation(200,200);
    addProperty(this.comboTraining = new ComboBoxField("training set","Training Set",true,this.trainingSets));
    addProperty(this.comboNetwork = new ComboBoxField("network","Neural Network",true,this.networks));
  }
View Full Code Here

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

    setTitle("Create GRNN/PNN Network");
    setSize(400,400);
    setLocation(200,200);
    addProperty(this.inputCount = new IntegerField("input neurons","Input Neuron Count",true,1,100000));
    addProperty(this.outputCount = new IntegerField("input neurons","Output Neuron Count",true,1,100000));
    addProperty(this.kernelType = new ComboBoxField("kernel type","Kernel Type",true,kernelTypeList));
    addProperty(this.outputModel = new ComboBoxField("output model","Output Model",true,outputModelList));
   
    render();
  }
View Full Code Here

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

    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));
    addProperty(this.rbfTypeCombo = new ComboBoxField("rbf type","RBF Type",true,rbfTypes));
    render();
  }
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.