Package org.encog.ml.data.versatile.normalizers.strategies

Examples of org.encog.ml.data.versatile.normalizers.strategies.NormalizationStrategy


   
    if( d[0]>0 && d[1]>0 && d[2]>0 ) {
      inputLow=0;
    }
   
    NormalizationStrategy result = new BasicNormalizationStrategy(
        inputLow,
        inputHigh,
        outputLow,
        outputHigh);
    return result;
View Full Code Here


  /**
   * Normalize the data set, and allocate memory to hold it.
   */
  public void normalize() {
    NormalizationStrategy strat = this.helper.getNormStrategy();

    if (strat == null) {
      throw new EncogError(
          "Please choose a model type first, with selectMethod.");
    }
View Full Code Here

TOP

Related Classes of org.encog.ml.data.versatile.normalizers.strategies.NormalizationStrategy

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.