Package org.neuroph.nnet

Examples of org.neuroph.nnet.Outstar


   * Creates and returns a new instance of Outstar network
   * @param outputNeuronsCount number of output neurons
   * @return instance of Outstar network
   */
  public static Outstar createOutstar(int outputNeuronsCount) {
    Outstar nnet = new Outstar(outputNeuronsCount);
    return nnet;
 
View Full Code Here

TOP

Related Classes of org.neuroph.nnet.Outstar

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.