Package org.encog.workbench.dialogs.common

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


    list.add("Excel (*.xlsx)");
   
    this.setSize(640, 200);
    this.setTitle("Convert Encog Binary Training to Other Format File");
   
    addProperty(this.binaryFile = new FileField("source file","Source Encog Binary File(*.egb)",true,false,EncogDocumentFrame.ENCOG_BINARY));
    addProperty(this.externalFile = new FileField("target file","Target File",true,true,null));
    addProperty(this.fileType = new ComboBoxField("type type", "Export File Type",true,list));
    render();
  }
View Full Code Here


    list.add("Excel (*.xlsx)");
   
    this.setSize(640, 200);
    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"));

View Full Code Here

   
    this.setSize(640, 330);
    this.setTitle("Setup Encog Analyst Wizard");
   
    beginTab("General");
    addProperty(this.rawFile = new FileField("source file","Source CSV File(*.csv)",true,false,EncogDocumentFrame.CSV_FILTER));
    addProperty(this.format = new ComboBoxField("format", "File Format", true, csvFormat));
    addProperty(this.method = new ComboBoxField("method", "Machine Learning", true, methods));
    addProperty(this.goal = new ComboBoxField("goal", "Goal", true, goalList));
    addProperty(this.targetField = new TextField("target field", "Target Field(blank for auto)", false));
    addProperty(this.headers = new CheckField("headers","CSV File Headers"));
View Full Code Here

    list.add("SVG (*.svg)");
   
    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

TOP

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

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.