Package org.neuroph.nnet

Examples of org.neuroph.nnet.Instar


   * Creates and returns a new instance of Instar network
   * @param inputNeuronsCount umber of input neurons
   * @return instance of Instar network
   */
  public static Instar createInstar(int inputNeuronsCount) {
    Instar nnet = new Instar(inputNeuronsCount);
    return nnet;
 
View Full Code Here

TOP

Related Classes of org.neuroph.nnet.Instar

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.