Package org.neuroph.nnet

Examples of org.neuroph.nnet.CompetitiveNetwork


   * @param outputNeuronsCount number of neurons in output layer
   * @return instance of CompetitiveNetwork
   */
  public static CompetitiveNetwork createCompetitiveNetwork(
      int inputNeuronsCount, int outputNeuronsCount) {
    CompetitiveNetwork nnet = new CompetitiveNetwork(inputNeuronsCount, outputNeuronsCount);
    return nnet;
  }
View Full Code Here

TOP

Related Classes of org.neuroph.nnet.CompetitiveNetwork

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.