Constructs EpochBackPropagationNetwork 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 EpochBackPropagationNetwork(
   double learningRate,
   double momentum,
   int[] nodesInEachLayer
)
C++
public:
 EpochBackPropagationNetwork(
   double learningRate,
   double momentum,
   array<int>^ nodesInEachLayer
) sealed 
J#
public EpochBackPropagationNetwork(
   double learningRate,
   double momentum,
   int[] nodesInEachLayer
)
JScript
public function EpochBackPropagationNetwork(
   learningRate : double,
   momentum : double,
   nodesInEachLayer : int[]
)

Parameters

learningRate
Network's leraning rate.
momentum
Nodes momentum.
nodesInEachLayer
Nodes in each layer.

See Also