C# Class 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.
Inheritance: BasicSynapse
Show file Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
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.

Method Details

Clone() public method

A clone of this object.
public Clone ( ) : object
return object

Compute() public method

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.
return INeuralData

CreatePersistor() public method

Return a persistor for this object.
public CreatePersistor ( ) : IPersistor
return IPersistor

WeightlessSynapse() public method

Simple default constructor.
public WeightlessSynapse ( ) : System
return System

WeightlessSynapse() public method

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.
return System