Package org.encog.ml.model.config

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


  public void selectTrainingType(VersatileMLDataSet dataset) {
    if (this.methodType == null) {
      throw new EncogError(
          "Please select your training method, before your training type.");
    }
    MethodConfig config = this.methodConfigurations.get(methodType);
    selectTraining(dataset, config.suggestTrainingType(),
        config.suggestTrainingArgs(trainingType));
  }
View Full Code Here

TOP

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

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.