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
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

Méthode Description
Iteration ( ) : void

Perform one training iteration.

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

Construct the outstar trainer.

Private Methods

Méthode Description
InitWeight ( ) : void

Approximate the weights based on the input values.

Method Details

Iteration() public méthode

Perform one training iteration.
public Iteration ( ) : void
Résultat void

TrainOutstar() public méthode

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.
Résultat System