To train the neuronal network on data. inputs[n] represents an input vector of the neural network and expected_outputs[n] the expected ouput for this vector.
[Visual Basic]
Overrides Public Sub Learn( _
ByVal inputs As Single()[), _
ByVal expected_outputs As Single()[) _
)
[C#]
public override void Learn(
float[][] inputs,
float[][] expected_outputs
);
Parameters
inputs
the input matrix
expected_outputs
the expected output matrix
See Also
BackPropagationLearningAlgorithm Class | BackPropagationLearningAlgorithm Members | NeuralNetwork Namespace