public class MomentumExtender extends DeltaRuleExtender
Constructor and Description |
---|
MomentumExtender()
Creates a new instance of MomentumExtender
|
Modifier and Type | Method and Description |
---|---|
double |
getDelta(double[] currentGradientOuts,
int j,
double aPreviousDelta)
Computes the delta value for a bias.
|
double |
getDelta(double[] currentInps,
int j,
double[] currentPattern,
int k,
double aPreviousDelta)
Computes the delta value for a weight.
|
void |
postBiasUpdate(double[] currentGradientOuts)
Gives extenders a change to do some post-computing after the
biases are updated.
|
void |
postWeightUpdate(double[] currentPattern,
double[] currentInps)
Gives extenders a change to do some post-computing after the
weights are updated.
|
void |
preBiasUpdate(double[] currentGradientOuts)
Gives extenders a change to do some pre-computing before the
biases are updated.
|
void |
preWeightUpdate(double[] currentPattern,
double[] currentInps)
Gives extenders a change to do some pre-computing before the
weights are updated.
|
getLearner, isEnabled, setEnabled, setLearner
public MomentumExtender()
public double getDelta(double[] currentGradientOuts, int j, double aPreviousDelta)
DeltaRuleExtender
getDelta
in class DeltaRuleExtender
currentGradientOuts
- the back propagated gradients.j
- the index of the bias.aPreviousDelta
- a delta value calculated by a previous delta extender.public double getDelta(double[] currentInps, int j, double[] currentPattern, int k, double aPreviousDelta)
DeltaRuleExtender
getDelta
in class DeltaRuleExtender
currentInps
- the forwarded input.j
- the input index of the weight.currentPattern
- the back propagated gradients.k
- the output index of the weight.aPreviousDelta
- a delta value calculated by a previous delta extender.public void postBiasUpdate(double[] currentGradientOuts)
LearnerExtender
postBiasUpdate
in class LearnerExtender
currentGradientOuts
- the back propagated gradients.public void postWeightUpdate(double[] currentPattern, double[] currentInps)
LearnerExtender
postWeightUpdate
in class LearnerExtender
currentPattern
- the back propagated gradients.currentInps
- the forwarded input.public void preBiasUpdate(double[] currentGradientOuts)
LearnerExtender
preBiasUpdate
in class LearnerExtender
currentGradientOuts
- the back propagated gradients.public void preWeightUpdate(double[] currentPattern, double[] currentInps)
LearnerExtender
preWeightUpdate
in class LearnerExtender
currentPattern
- the back propagated gradients.currentInps
- the forwarded input.Submit Feedback to pmarrone@users.sourceforge.net