C# Class Encog.Neural.Networks.Pattern.FeedForwardPattern

Used to create feedforward neural networks. A feedforward network has an input and output layers separated by zero or more hidden layers. The feedforward neural network is one of the most common neural network patterns.
Inheritance: INeuralNetworkPattern
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode Description
AddHiddenLayer ( int count ) : void

Add a hidden layer, with the specified number of neurons.

Clear ( ) : void

Clear out any hidden neurons.

Generate ( ) : BasicNetwork

Generate the Elman neural network.

Method Details

AddHiddenLayer() public méthode

Add a hidden layer, with the specified number of neurons.
public AddHiddenLayer ( int count ) : void
count int The number of neurons to add.
Résultat void

Clear() public méthode

Clear out any hidden neurons.
public Clear ( ) : void
Résultat void

Generate() public méthode

Generate the Elman neural network.
public Generate ( ) : BasicNetwork
Résultat BasicNetwork