C# Class Encog.Neural.Networks.Training.CPN.TrainOutstar

Used for Instar training of a CPN neural network. A CPN network is a hybrid supervised/unsupervised network. The Outstar training handles the supervised portion of the training.
Inheritance: BasicTraining, ILearningRate
ファイルを表示 Open project: encog/encog-silverlight-core

Public Methods

Method Description
Iteration ( ) : void

Perform one training iteration.

TrainOutstar ( BasicNetwork network, INeuralDataSet training, double learningRate ) : System

Construct the outstar trainer.

Private Methods

Method Description
InitWeight ( ) : void

Approximate the weights based on the input values.

Method Details

Iteration() public method

Perform one training iteration.
public Iteration ( ) : void
return void

TrainOutstar() public method

Construct the outstar trainer.
public TrainOutstar ( BasicNetwork network, INeuralDataSet training, double learningRate ) : System
network BasicNetwork The network to train.
training INeuralDataSet The training data, must provide ideal outputs.
learningRate double The learning rate.
return System