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
Show file Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method 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 method

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

Clear() public method

Clear out any hidden neurons.
public Clear ( ) : void
return void

Generate() public method

Generate the Elman neural network.
public Generate ( ) : BasicNetwork
return BasicNetwork