Package org.encog.util.normalize.input

Examples of org.encog.util.normalize.input.InputFieldArray1D


    NormalizationStorageArray1D target = new NormalizationStorageArray1D(arrayOutput);
   
    DataNormalization norm = new DataNormalization();
    norm.setReport(new NullStatusReportable());
    norm.setTarget(target);
    norm.addInputField(a = new InputFieldArray1D(false,ARRAY_1D));
    norm.addOutputField(new OutputFieldRangeMapped(a,0.1,0.9));
    return norm;
  }
View Full Code Here

TOP

Related Classes of org.encog.util.normalize.input.InputFieldArray1D

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.