Examples of Adaline


Examples of org.neuroph.nnet.Adaline

   * Creates and returns a new instance of Adaline network
   * @param inputsCount number of inputs of Adaline network
   * @return instance of Adaline network
   */
  public static Adaline createAdaline(int inputsCount) {
    Adaline nnet = new Adaline(inputsCount);
    return nnet;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.