Package org.neuroph.nnet

Examples of org.neuroph.nnet.RbfNetwork


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

TOP

Related Classes of org.neuroph.nnet.RbfNetwork

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.