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

A recurrent self organizing map is a self organizing map that has a recurrent context connection on the hidden layer. This type of neural network is adept at classifying temporal data.
Inheritance: INeuralNetworkPattern
Exibir arquivo Open project: encog/encog-silverlight-core

Public Methods

Method Description
AddHiddenLayer ( int count ) : void

Add a hidden layer. SOM networks do not have hidden layers, so this will throw an error.

Clear ( ) : void

Clear out any hidden neurons.

Generate ( ) : BasicNetwork

Generate the RSOM network.

Method Details

AddHiddenLayer() public method

Add a hidden layer. SOM networks do not have hidden layers, so this will throw an error.
public AddHiddenLayer ( int count ) : void
count int The number of hidden neurons.
return void

Clear() public method

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

Generate() public method

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