Package org.encog.ml.model.config

Examples of org.encog.ml.model.config.FeedforwardConfig


   * @param theDataset The dataset.
   */
  public EncogModel(VersatileMLDataSet theDataset) {
    this.dataset = theDataset;
    this.methodConfigurations.put(MLMethodFactory.TYPE_FEEDFORWARD,
        new FeedforwardConfig());
    this.methodConfigurations
        .put(MLMethodFactory.TYPE_SVM, new SVMConfig());
    this.methodConfigurations.put(MLMethodFactory.TYPE_RBFNETWORK,
        new RBFNetworkConfig());
    this.methodConfigurations.put(MLMethodFactory.TYPE_NEAT,
View Full Code Here

TOP

Related Classes of org.encog.ml.model.config.FeedforwardConfig

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.