Examples of DoubleField


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

   
    super(EncogWorkBench.getInstance().getMainWindow());
    setSize(400,400);
    setLocation(200,200);
   
    addProperty(this.maxError = new DoubleField("max error",
        "Maximum Error Percent(0-100)", true, 0, 100));
    if( allowKFold ) {
      addProperty(this.kfold = new IntegerField("kfold","Cross Validation KFold (0=none)",true,0,50));
    } else {
      kfold = null;
View Full Code Here

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

    types.add("Fan-In");
   
    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));
    this.beginTab("Consistent");
    addProperty(this.seedValue = new IntegerField("seed value","Seed Value",true,0,-1));
    addProperty(this.constHigh = new DoubleField("high","High Range",true,0,-1));
    addProperty(this.constLow = new DoubleField("low","Low Range",true,0,-1));   
    this.beginTab("Constant");
    addProperty(this.constantValue = new DoubleField("constant value","Constant Value",true,0,-1));
    render();
  }
View Full Code Here

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

   */
  public InputSVM(SVM svm) {
    super(EncogWorkBench.getInstance().getMainWindow());
    setSize(320,200);
    setTitle("Support Vector Machine (SVM)");
    addProperty(this.gamma = new DoubleField("gamma","Gamma (0 for 1/#input)",true,-1,-1));
    addProperty(this.c = new DoubleField("c","C",true,-1,-1));
    render()
    this.c.setValue(1);
    this.gamma.setValue(1.0/svm.getInputCount());
  }
View Full Code Here

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

   */
  public InputADALINE() {
    super(false);
    setTitle("Train ADALINE");
   
    addProperty(this.learningRate = new DoubleField("learning rate","Learning Rate",true,0,-1));
    render();
    this.learningRate.setValue(0.01);
  }
View Full Code Here

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

   * @param owner
   */
  public InputBackpropagation() {
    super(true);
    setTitle("Train Backpropagation");
    addProperty(this.learningRate = new DoubleField("learning rate","Learning Rate",true,-1,-1));
    addProperty(this.momentum = new DoubleField("momentum","Momentum",true,-1,-1));
    render();
    this.learningRate.setValue(0.7);
    this.momentum.setValue(0.0);

    this.getMaxError().setValue(EncogWorkBench.getInstance().getConfig().getDefaultError());
View Full Code Here

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

   */
  public InputInstar() {
    super(false);
    setTitle("Train Instar");

    addProperty(this.learningRate = new DoubleField("learning rate","Learning Rate",true,-1,-1));
    addProperty(this.initWeights = new CheckField("init weights","Init Weights from Training Data"));

    render();
    this.learningRate.setValue(0.7);   
    this.getInitWeights().setValue(true);
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.