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

Inheritance: BasicSynapse
Exibir arquivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
Clone ( ) : object

Clone this object.

Compute ( INeuralData input ) : INeuralData

Compute the output from this synapse.

CreatePersistor ( ) : IPersistor

Create a persistor for this type of synapse.

DirectSynapse ( ) : System

Simple default constructor.

DirectSynapse ( ILayer fromLayer, ILayer toLayer ) : System

Construct a direct synapse between the two specified layers.

Method Details

Clone() public method

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

Compute() public method

Compute the output from this synapse.
public Compute ( INeuralData input ) : INeuralData
input INeuralData The input to this synapse.
return INeuralData

CreatePersistor() public method

Create a persistor for this type of synapse.
public CreatePersistor ( ) : IPersistor
return IPersistor

DirectSynapse() public method

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

DirectSynapse() public method

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