|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.joone.engine.extenders.LearnerExtender
org.joone.engine.extenders.UpdateWeightExtender
org.joone.engine.extenders.OnlineModeExtender
public class OnlineModeExtender
This is the default weight updater (online). It stores the weights after each update.
Constructor Summary | |
---|---|
OnlineModeExtender()
Creates a new instance of OnlineExtender |
Method Summary | |
---|---|
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. |
boolean |
storeWeightsBiases()
Checks if the weights or biases will be stored this cycle. |
void |
updateBias(int j,
double aDelta)
Updates a bias with the calculated delta value. |
void |
updateWeight(int j,
int k,
double aDelta)
Updates a weight with the calculated delta value. |
Methods inherited from class org.joone.engine.extenders.LearnerExtender |
---|
getLearner, isEnabled, setEnabled, setLearner |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public OnlineModeExtender()
Method Detail |
---|
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.public void updateBias(int j, double aDelta)
UpdateWeightExtender
updateBias
in class UpdateWeightExtender
j
- the index of the bias to update.aDelta
- the calculated delta value.public void updateWeight(int j, int k, double aDelta)
UpdateWeightExtender
updateWeight
in class UpdateWeightExtender
j
- the input index of the weight to update.k
- the output index of the weight to update.aDelta
- the calculated delta value.public boolean storeWeightsBiases()
UpdateWeightExtender
storeWeightsBiases
in class UpdateWeightExtender
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |