C# Класс 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.
Наследование: INeuralNetworkPattern
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
TAG_F1 String
TAG_F2 String

Открытые методы

Метод Описание
AddHiddenLayer ( int count ) : void

Unused, a BAM has no hidden layers.

Clear ( ) : void

Clear any settings on the pattern.

Generate ( ) : BasicNetwork

The generated network.

Описание методов

AddHiddenLayer() публичный Метод

Unused, a BAM has no hidden layers.
public AddHiddenLayer ( int count ) : void
count int Not used.
Результат void

Clear() публичный Метод

Clear any settings on the pattern.
public Clear ( ) : void
Результат void

Generate() публичный Метод

The generated network.
public Generate ( ) : BasicNetwork
Результат BasicNetwork

Описание свойств

TAG_F1 публичное статическое свойство

The F1 layer.
public static String TAG_F1
Результат String

TAG_F2 публичное статическое свойство

The F2 layer.
public static String TAG_F2
Результат String