Click or drag to resize
QuasiNewtonTrainerTrain Method
Trains the neural network using supplied training patterns.

Namespace: Imsl.DataMining.Neural
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public virtual void Train(
	Network network,
	double[,] xData,
	double[,] yData
)

Parameters

network
Type: Imsl.DataMining.NeuralNetwork
The Network to be trained.
xData
Type: SystemDouble
An input double matrix containing training patterns.
yData
Type: SystemDouble
An output double matrix containing output training patterns.

Implements

ITrainerTrain(Network, Double, Double)
Remarks

The number of columns in xData must equal the number of Nodes in the InputLayer.

The number of columns in yData must equal the number of Perceptrons in the OutputLayer.

Each row of xData and yData contains a training pattern. The number of rows in these two arrays must be at least equal to the number of weights in the Network.

See Also