Method | Description | |
---|---|---|
CalculateGradients ( double inputs, double targets ) : double[][] |
Calculates gradients of the error function (cross-entropy) with respect to weights.
|
|
FeedForward ( double inputs ) : |
Activation functions: tanh for hidden nodes, softmax for output nodes.
|
|
MultilayerPerceptron ( int numInputs, int numOutputs, IList |
public CalculateGradients ( double inputs, double targets ) : double[][] | ||
inputs | double | |
targets | double | |
return | double[][] |
public FeedForward ( double inputs ) : |
||
inputs | double | |
return |
public MultilayerPerceptron ( int numInputs, int numOutputs, IList |
||
numInputs | int | |
numOutputs | int | |
hiddenLayerSizes | IList |
|
return | System |