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

Construct a Bidirectional Access Memory (BAM) neural network. This neural network type learns to associate one pattern with another. The two patterns do not need to be of the same length. This network has two that are connected to each other. Though they are labeled as input and output layers to Encog, they are both equal, and should simply be thought of as the two layers that make up the net.
Inheritance: INeuralNetworkPattern
Exibir arquivo Open project: encog/encog-silverlight-core

Public Properties

Property Type Description
TAG_F1 String
TAG_F2 String

Public Methods

Method Description
AddHiddenLayer ( int count ) : void

Unused, a BAM has no hidden layers.

Clear ( ) : void

Clear any settings on the pattern.

Generate ( ) : BasicNetwork

The generated network.

Method Details

AddHiddenLayer() public method

Unused, a BAM has no hidden layers.
public AddHiddenLayer ( int count ) : void
count int Not used.
return void

Clear() public method

Clear any settings on the pattern.
public Clear ( ) : void
return void

Generate() public method

The generated network.
public Generate ( ) : BasicNetwork
return BasicNetwork

Property Details

TAG_F1 public_oe static_oe property

The F1 layer.
public static String TAG_F1
return String

TAG_F2 public_oe static_oe property

The F2 layer.
public static String TAG_F2
return String