Examples of BinaryDeltaRule


Examples of org.neuroph.nnet.learning.BinaryDeltaRule

    Perceptron nnet = new Perceptron(inputNeuronsCount, outputNeuronsCount, transferFunctionType);

                if (learningRule.getName().equals(PerceptronLearning.class.getName()))  {
                    nnet.setLearningRule(new PerceptronLearning());
                } else if (learningRule.getName().equals(BinaryDeltaRule.class.getName())) {
                    nnet.setLearningRule(new BinaryDeltaRule());
                }

    return nnet;
  }
View Full Code Here

Examples of org.neuroph.nnet.learning.BinaryDeltaRule

    ConnectionFactory.fullConnect(inputLayer, outputLayer);

    // set input and output cells for this network
    NeuralNetworkFactory.setDefaultIO(this);
               
                this.setLearningRule(new BinaryDeltaRule());
    // set appropriate learning rule for this network
//    if (transferFunctionType == TransferFunctionType.STEP) {
//      this.setLearningRule(new BinaryDeltaRule(this));
//    } else if (transferFunctionType == TransferFunctionType.SIGMOID) {
//      this.setLearningRule(new SigmoidDeltaRule(this));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.