Package org.encog.ml

Examples of org.encog.ml.MLMethod


   */
  public MLMethod create(final String methodType,
      final String architecture, final int input, final int output) {
    for (EncogPluginBase plugin : Encog.getInstance().getPlugins()) {
      if (plugin instanceof EncogPluginService1) {
        MLMethod result = ((EncogPluginService1) plugin).createMethod(
            methodType, architecture, input, output);
        if (result != null) {
          return result;
        }
      }
View Full Code Here

TOP

Related Classes of org.encog.ml.MLMethod

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.