Examples of MaxNet


Examples of org.neuroph.nnet.MaxNet

   * Creates and returns a new instance of Max Net network
   * @param neuronsCount number of neurons (same num in input and output layer)
   * @return instance of Max Net network
   */
  public static MaxNet createMaxNet(int neuronsCount) {
    MaxNet nnet = new MaxNet(neuronsCount);
    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.