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

This class is used to generate an Jordan style recurrent neural network. This network type consists of three regular layers, an input output and hidden layer. There is also a context layer which accepts output from the output layer and outputs back to the hidden layer. This makes it a recurrent neural network. The Jordan neural network is useful for temporal input data. The specified activation function will be used on all layers. The Jordan neural network is similar to the Elman neural network.
Inheritance: INeuralNetworkPattern
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

Méthode Description
AddHiddenLayer ( int count ) : void

Add a hidden layer, there should be only one.

Clear ( ) : void

Clear out any hidden neurons.

Generate ( ) : BasicNetwork

Generate a Jordan neural network.

JordanPattern ( ) : System

Construct an object to create a Jordan type neural network.

Method Details

AddHiddenLayer() public méthode

Add a hidden layer, there should be only one.
public AddHiddenLayer ( int count ) : void
count int The number of neurons in this hidden layer.
Résultat void

Clear() public méthode

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

Generate() public méthode

Generate a Jordan neural network.
public Generate ( ) : BasicNetwork
Résultat BasicNetwork

JordanPattern() public méthode

Construct an object to create a Jordan type neural network.
public JordanPattern ( ) : System
Résultat System