Method | Description | |
---|---|---|
BackPropLearning ( double learningRate, double momentum ) : System | ||
calculateBiasUpdates ( |
||
calculateBiasUpdates ( |
||
calculateWeightUpdates ( |
||
calculateWeightUpdates ( |
||
processError ( FeedForwardNeuralNetwork network, Vector error ) : void | ||
processInput ( FeedForwardNeuralNetwork network, Vector input ) : Vector | ||
setNeuralNetwork ( FunctionApproximator fapp ) : void |
public BackPropLearning ( double learningRate, double momentum ) : System | ||
learningRate | double | |
momentum | double | |
return | System |
public static calculateBiasUpdates ( |
||
layerSensitivity | ||
alpha | double | |
return |
public calculateBiasUpdates ( |
||
layerSensitivity | ||
alpha | double | |
momentum | double | |
return |
public static calculateWeightUpdates ( |
||
layerSensitivity | ||
previousLayerActivationOrInput | ||
alpha | double | |
return | Matrix |
public calculateWeightUpdates ( |
||
layerSensitivity | ||
previousLayerActivationOrInput | ||
alpha | double | |
momentum | double | |
return | Matrix |
public processError ( FeedForwardNeuralNetwork network, Vector error ) : void | ||
network | FeedForwardNeuralNetwork | |
error | Vector | |
return | void |
public processInput ( FeedForwardNeuralNetwork network, Vector input ) : Vector | ||
network | FeedForwardNeuralNetwork | |
input | Vector | |
return | Vector |
public setNeuralNetwork ( FunctionApproximator fapp ) : void | ||
fapp | FunctionApproximator | |
return | void |