Examples of Instar


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
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.