Overridden.Performs network training. Here you write the code to train your network.


Namespace: xpidea.neuro.net.adaline
Assembly: xpidea.neuro.net (in xpidea.neuro.net.dll)

Syntax

Visual Basic (Declaration)
Public Overrides Sub Train( _ 
   ByVal patterns As PatternsCollection _ 
)
C#
public override void Train(
   PatternsCollection patterns
)
C++
public:
 virtual void Train(
   PatternsCollection patterns
) override 
J#
public override void Train(
   PatternsCollection patterns
)
JScript
public override  function Train(
   patterns : PatternsCollection
)

Parameters

patterns
Set of the patterns that will be exposed to a network during the training.

Remarks

This method implementation is for reference only - You may want to implement your own method by overriding this one. This implementation will complete network training only after the network will produce correct output for all input patterns. Be advised that in this example network training will never complete if input patterns have non-linear character.

See Also