Neural Network Software

com.practicalstudies.neural
Interface WeightAdjustmentFunction

All Known Implementing Classes:
BackpropagationWeightAdjustment

public interface WeightAdjustmentFunction

Encapsulates an algorithm to adjust the connection weight of a WeightedConnection, typically to support network learning.

Author:
Michael Wax

Method Summary
 void adjustConnectionWeight(WeightedConnection connection)
          Any implementation of this method should call both setWeight and setLastWeightChange on the WeightedConnection object.
 

Method Detail

adjustConnectionWeight

public void adjustConnectionWeight(WeightedConnection connection)

Any implementation of this method should call both setWeight and setLastWeightChange on the WeightedConnection object.


PracticalStudies.com