Click or drag to resize
MultiClassificationTrain Method
Trains the classification 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(
	ITrainer trainer,
	double[,] xData,
	int[] yData
)

Parameters

trainer
Type: Imsl.DataMining.NeuralITrainer
A Trainer object, which is used to train the network. The error function in any QuasiNewton trainer included in trainer should be set to the error function from this class using the Error method.
xData
Type: SystemDouble
A double matrix containing the input training patterns. The number of columns in xData must equal the number of nodes in the input layer. Each row of xData contains a training pattern.
yData
Type: SystemInt32
An int array containing the output classification patterns. These values must be in the range of one to the number of output perceptrons in the network.
See Also