C# Class Encog.Neural.Networks.Synapse.WeightedSynapse

Inheritance: BasicSynapse
Show file Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
Clone ( ) : object

Clone this object.

Compute ( INeuralData input ) : INeuralData

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

CreatePersistor ( ) : IPersistor

Return a persistor for this object.

WeightedSynapse ( ) : System

Simple default constructor.

WeightedSynapse ( ILayer fromLayer, ILayer toLayer ) : System

Construct a weighted synapse between the two layers.

Method Details

Clone() public method

Clone this object.
public Clone ( ) : object
return object

Compute() public method

Compute the weighted output from this synapse. Each neuron in the from layer has a weighted 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

WeightedSynapse() public method

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

WeightedSynapse() public method

Construct a weighted synapse between the two layers.
public WeightedSynapse ( ILayer fromLayer, ILayer toLayer ) : System
fromLayer ILayer The starting layer.
toLayer ILayer The ending layer.
return System