Package org.encog.util.normalize.output

Examples of org.encog.util.normalize.output.OutputFieldGrouped


  public void addOutputField(final OutputField outputField,
      final boolean ideal) {
    this.outputFields.add(outputField);
    outputField.setIdeal(ideal);
    if (outputField instanceof OutputFieldGrouped) {
      final OutputFieldGrouped ofg = (OutputFieldGrouped) outputField;
      this.groups.add(ofg.getGroup());
    }
  }
View Full Code Here

TOP

Related Classes of org.encog.util.normalize.output.OutputFieldGrouped

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.