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

Pattern to create a NEAT style neural network.
Inheritance: INeuralNetworkPattern
Exibir arquivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
AddHiddenLayer ( int count ) : void

Add the hidden layer, this should be called once, as a RBF has a single hidden layer.

Clear ( ) : void

Clear out any hidden neurons.

Generate ( ) : BasicNetwork

Generate the RBF network.

NEATPattern ( ) : System

Construct a NEAT pattern.

Method Details

AddHiddenLayer() public method

Add the hidden layer, this should be called once, as a RBF has a single hidden layer.
public AddHiddenLayer ( int count ) : void
count int The number of neurons in the hidden layer.
return void

Clear() public method

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

Generate() public method

Generate the RBF network.
public Generate ( ) : BasicNetwork
return BasicNetwork

NEATPattern() public method

Construct a NEAT pattern.
public NEATPattern ( ) : System
return System