Neuroph

Uses of Class
org.neuroph.nnet.learning.LMS

Packages that use LMS
org.neuroph.nnet.learning This package provides implementations of concrete neural network learning algorithms. 
 

Uses of LMS in org.neuroph.nnet.learning
 

Subclasses of LMS in org.neuroph.nnet.learning
 class BackPropagation
          The BackPropagation class is the Back Propagation learning rule for Multi Layer Perceptron neural networks.
 class MomentumBackpropagation
          The MomentumBackpropagation class implements backpropagation learning rule with momentum factor.
 class SigmoidDeltaRule
          The SigmoidDeltaRule class extends LMS learning rule an implements Delta rule learning algorithm for perceptrons with sigmoid functions.
 class StepDeltaRule
          The StepDeltaRule class implements Delta rule learning algorithm for perceptrons with step functions.
 class SupervisedHebbianLearning
          The SupervisedHebbianLearning class implements supervised hebbian learning rule.
 


Neuroph