Package org.encog.workbench.dialogs.common

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


    setLocation(200, 200);
    findData();

    addProperty(this.comboTraining = new ComboBoxField("training set",
        "Training Set", true, this.trainingSets));
    addProperty(this.hidden = new BuildingListField("hidden neurons",
        "Hidden Layer Counts"));
    addProperty(this.activationField = new PopupField("activation",
        "Activation Function", true));
    addProperty(this.iterations = new IntegerField("iterations",
        "Training Iterations", true, 1, 100000));
View Full Code Here


    setTitle("Create Feedforward Network");
    setSize(600, 400);
    setLocation(200, 200);
    addProperty(this.inputCount = new IntegerField("input neurons",
        "Input Neuron Count", true, 1, 100000));
    addProperty(this.hidden = new BuildingListField("hidden neurons",
        "Hidden Layer Counts"));
    addProperty(this.outputCount = new IntegerField("output neurons",
        "Output Neuron Count", true, 1, 100000));
    addProperty(this.activationFieldHidden = new PopupField("activation hidden",
        "Activation Function Hidden", true));
View Full Code Here

TOP

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

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.