Package org.encog.workbench.dialogs.common

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


   
    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

    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

    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

    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

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

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.