Package org.encog.workbench.dialogs.common

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


    this.setTitle("Convert Other Format File to Encog Binary Training");

    addProperty(this.externalFile = new FileField("source file","Source File",true,false,EncogDocumentFrame.CSV_FILTER));
    addProperty(this.binaryFile = new FileField("target file","Target Encog Binary File(*.egb)",true,true,EncogDocumentFrame.ENCOG_BINARY));
    addProperty(this.fileType = new ComboBoxField("type type", "Export File Type",true,list));
    addProperty(this.inputCount = new IntegerField("input count","Input Count",true,1,10000));
    addProperty(this.idealCount = new IntegerField("ideal count","Ideal Count",true,0,10000));
    addProperty(this.containsSignificance = new CheckField("contains significance column","Significance Column Present"));

    render();
  }
View Full Code Here


 
  public CreateEmptyTrainingDialog(Frame owner) {
    super(owner);
    setTitle("Empty Training Data");
    setSize(400,200);
    addProperty(this.elements = new IntegerField("elements","Training Set Elements",true, 0, 10000));
    addProperty(this.input = new IntegerField("input","Input Field Count",true, 1, 1000));
    addProperty(this.ideal = new IntegerField("ideal","Output Field Count",true, 0, 1000));
    render();
  }
View Full Code Here

 
  public RandomTrainingDataDialog(Frame owner) {
    super(owner);
    setTitle("Random Training Data");
    setSize(400,200);
    addProperty(this.elements = new IntegerField("elements","Training Set Elements",true, 0, 1000000));
    addProperty(this.columns = new IntegerField("columns","Random Column Count",true, 1, 1000));
    addProperty(this.low = new DoubleField("low","Random Low Value",true, 0, -1));
    addProperty(this.high = new DoubleField("high","Random High Value",true, 0, -1));
    render();
  }
View Full Code Here

    int year = gc.get(Calendar.YEAR);
   
    setTitle("Market Training Data");
    setSize(500,400);
    addProperty(this.ticker = new TextField("ticker","Ticker Symbol",true));
    addProperty(this.fromMonth = new IntegerField("begin month","Beginning Month(1-12)",true, 1, 12));
    addProperty(this.fromDay = new IntegerField("begin day","Beginning Day(1-12)",true, 1, 31));
    addProperty(this.fromYear = new IntegerField("begin year","Beginning Year(1-12)",true, 1900, year));
   
    addProperty(this.toMonth = new IntegerField("end month","Ending Month(1-12)",true, 1, 12));
    addProperty(this.toDay = new IntegerField("end day","Ending Day(1-12)",true, 1, 31));
    addProperty(this.toYear = new IntegerField("end year","Ending Year(1-12)",true, 1900, year));
   
   
    render();
  }
View Full Code Here

    addProperty(this.targetField = new TextField("target field", "Target Field(blank for auto)", false));
    addProperty(this.headers = new CheckField("headers","CSV File Headers"));
    addProperty(this.range = new ComboBoxField("normalization range", "Normalization Range", true, rangeList));
    addProperty(this.missing = new ComboBoxField("missing values", "Missing Values", true, missingList));
    beginTab("Time Series");
    addProperty(this.lagCount = new IntegerField("lag count","Lag Count",true,0,1000));
    addProperty(this.leadCount = new IntegerField("lead count","Lead Count",true,0,1000));
    addProperty(this.includeTarget = new CheckField("include target","Include Target in Input"));
    beginTab("Tasks");
    addProperty(this.normalize = new CheckField("normalize","Normalize"));
    addProperty(this.randomize = new CheckField("randomize","Randomize"));
    addProperty(this.segregate = new CheckField("segregate","Segregate"));
View Full Code Here

    setTitle("Edit Population Info");
    setSize(400,300);
    setLocation(200,200);
   
    addProperty(oldAgePenalty = new DoubleField("old penalty","Old Age Penalty",true,0,1));
    addProperty(oldAgeThreshold = new IntegerField("old threshold","Old Age Threshold",true,0,Integer.MAX_VALUE));
    addProperty(populationSize = new IntegerField("max population","Max Population Size",true,0,Integer.MAX_VALUE));
    addProperty(survivalRate = new DoubleField("survival rate","Survival Rate",true,0,Integer.MAX_VALUE));
    addProperty(youngBonusAgeThreshold = new IntegerField("youth bonus","Youth Bonus",true,0,Integer.MAX_VALUE));
    addProperty(youngScoreBonus = new DoubleField("youth threshold","Youth Threshold",true,0,Integer.MAX_VALUE));   

  }
View Full Code Here

    kernelTypeNames.add("Precomputed");

    setTitle("Create SVM Network");
    setSize(400, 400);
    setLocation(200, 200);
    addProperty(this.inputCount = new IntegerField("input-count",
        "Input Count", true, 1, 100000));
    addProperty(this.outputCount = new IntegerField("output-count",
        "Output Count", true, 1, 100000));
    addProperty(this.svmType = new ComboBoxField("SVM type", "SVM Type",
        true, svmTypeNames));
    addProperty(this.kernelType = new ComboBoxField("Kernel type",
        "Kernel Type", true, kernelTypeNames));
View Full Code Here

  public CreateBlotzmannDialog(Frame owner) {
    super(owner);
    setTitle("Create Boltzmann Machine");
    setSize(400,400);
    setLocation(200,200);
    addProperty(this.neuronCount = new IntegerField("neurons","Neuron Count",true,1,100000));
    render();
  }
View Full Code Here

    setTitle("Encog Configuration");
    setSize(500,300);
    beginTab("Training");
    addProperty(this.defaultError = new DoubleField("default error","Default Error Percent",true,0,100));
    addProperty(this.errorCalculation = new ComboBoxField("error calculation", "Error Calculation", true, errorMethods));
    addProperty(this.threadCount = new IntegerField("thread count","Thread Count (0=auto)",true,0,10000));
    addProperty(this.useOpenCL = new CheckField("use opencl","Use Graphics Card(GPU)"));
    render();
  }
View Full Code Here

  public CreateCPNDialog(Frame owner) {
    super(owner);
    setTitle("Create CPN Network");
    setSize(400,400);
    setLocation(200,200);
    addProperty(this.inputCount = new IntegerField("input neurons","Input Neuron Count",true,1,100000));
    addProperty(this.instarCount = new IntegerField("instar neurons","Instar Neuron Count",true,1,100000));
    addProperty(this.outstarCount = new IntegerField("outstar neurons","Outstar Neuron Count",true,1,100000));
    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.