Constructs the BackPropagation network.


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

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal learningRate As Double,  _ 
   ByVal momentum As Double,  _ 
   ByVal nodesInEachLayer As Integer() _ 
)
C#
public BackPropagationNetwork(
   double learningRate,
   double momentum,
   int[] nodesInEachLayer
)
C++
public:
 BackPropagationNetwork(
   double learningRate,
   double momentum,
   array<int>^ nodesInEachLayer
) sealed 
J#
public BackPropagationNetwork(
   double learningRate,
   double momentum,
   int[] nodesInEachLayer
)
JScript
public function BackPropagationNetwork(
   learningRate : double,
   momentum : double,
   nodesInEachLayer : int[]
)

Parameters

learningRate
Leraning rate of the network.
momentum
Momentum
nodesInEachLayer
Array of integers specifying number of nodes in each layer of the network.

See Also