Neuroph

Uses of Class
org.neuroph.core.learning.IterativeLearning

Packages that use IterativeLearning
org.neuroph.core.learning This package provides base classes for neural network learning algorithms. 
org.neuroph.nnet.learning This package provides implementations of concrete neural network learning algorithms. 
 

Uses of IterativeLearning in org.neuroph.core.learning
 

Subclasses of IterativeLearning in org.neuroph.core.learning
 class SupervisedLearning
          The SupervisedLearning class is the base class for all supervised learning algorithms.
 class UnsupervisedLearning
          The UnsupervisedLearning class is the base class for all unsupervised learning algorithms.
 

Uses of IterativeLearning in org.neuroph.nnet.learning
 

Subclasses of IterativeLearning in org.neuroph.nnet.learning
 class BackPropagation
          The BackPropagation class is the Back Propagation learning rule for Multi Layer Perceptron neural networks.
 class CompetitiveLearning
          The CompetitiveLearning class implements competitive learning rule.
 class LMS
          The LMS class implements LMS learning rule for neural networks.
 class OjaLearning
           
 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.
 class UnsupervisedHebbianLearning
          The UnsupervisedHebbianLearning class implements unsupervised hebbian learning rule.
 


Neuroph