C# Класс Encog.Neural.Networks.Synapse.WeightlessSynapse

A fully connected synapse that simply sums all input to each neuron, no weights are applied. This synapse type is not teachable.
Наследование: BasicSynapse
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Clone ( ) : object

A clone of this object.

Compute ( INeuralData input ) : INeuralData

Compute the weightless output from this synapse. Each neuron in the from layer has a weightless connection to each of the neurons in the next layer.

CreatePersistor ( ) : IPersistor

Return a persistor for this object.

WeightlessSynapse ( ) : System

Simple default constructor.

WeightlessSynapse ( ILayer fromLayer, ILayer toLayer ) : System

Construct a weighted synapse between the two layers.

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

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

A clone of this object.
public Clone ( ) : object
Результат object

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

Compute the weightless output from this synapse. Each neuron in the from layer has a weightless connection to each of the neurons in the next layer.
public Compute ( INeuralData input ) : INeuralData
input INeuralData The input from the synapse.
Результат INeuralData

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

Return a persistor for this object.
public CreatePersistor ( ) : IPersistor
Результат IPersistor

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

Simple default constructor.
public WeightlessSynapse ( ) : System
Результат System

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

Construct a weighted synapse between the two layers.
public WeightlessSynapse ( ILayer fromLayer, ILayer toLayer ) : System
fromLayer ILayer The starting layer.
toLayer ILayer The ending layer.
Результат System