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]
Overridable Public Sub Learn( _
ByVal inputs As Single()[), _
ByVal expected_outputs As Single()[) _
)
[C#]
public virtual void Learn(
float[][] inputs,
float[][] expected_outputs
);
Parameters
inputs
the input matrix
expected_outputs
the expected output matrix
See Also
LearningAlgorithm Class | LearningAlgorithm Members | NeuralNetwork Namespace