|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectde.htwdd.rosenkoenig.neuro.net.training.TeachingAlgorithm
de.htwdd.rosenkoenig.neuro.net.training.Backpropagation
public class Backpropagation
Implementation of the backpropagation teaching algorithm for feed forward neural networks.
Backpropagation performs training by spreading the error caused by a pattern uniformly on the whole net, depending on each neuron's error ratio. To calculate a neuron's error ratio, the method of decreasing gradients is used. Further information on Backpropagation can be found here.
| Field Summary |
|---|
| Fields inherited from class de.htwdd.rosenkoenig.neuro.net.training.TeachingAlgorithm |
|---|
trainer |
| Constructor Summary | |
|---|---|
Backpropagation()
Creates and initializes a new instance of Backpropagation. |
|
| Method Summary | |
|---|---|
void |
teachPatterns(java.util.List<Pattern> patterns)
Runs the backpropagation algorithm (for one cycle) on the provided pattern set. |
| Methods inherited from class de.htwdd.rosenkoenig.neuro.net.training.TeachingAlgorithm |
|---|
getTrainer, setTrainer |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public Backpropagation()
| Method Detail |
|---|
public final void teachPatterns(java.util.List<Pattern> patterns)
Runs the backpropagation algorithm (for one cycle) on the provided pattern set.
Steps:
(step % batchsize == 0)
teachPatterns in class TeachingAlgorithmpatterns - set of training patterns
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||