Package org.neuroph.nnet

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

Related Classes of org.neuroph.nnet.Adaline

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.