Package org.neuroph.nnet

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

Related Classes of org.neuroph.nnet.Kohonen

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.