Package org.neuroph.nnet

Examples of org.neuroph.nnet.BAM


   * @param inputNeuronsCount number of input neurons
         * @param outputNeuronsCount number of output neurons
   * @return instance of BAM network
   */
  public static BAM createBam(int inputNeuronsCount, int outputNeuronsCount) {
    BAM nnet = new BAM(inputNeuronsCount, outputNeuronsCount);
    return nnet;
 
View Full Code Here

TOP

Related Classes of org.neuroph.nnet.BAM

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.