Examples of Kohonen


Examples of org.neuroph.nnet.Kohonen

   * @param inputNeuronsCount number of input neurons
         * @param outputNeuronsCount number of output neurons
   * @return instance of Kohonen network
   */
  public static Kohonen createKohonen(int inputNeuronsCount, int outputNeuronsCount) {
    Kohonen nnet = new Kohonen(new Integer(inputNeuronsCount), new Integer(outputNeuronsCount));
    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.