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

Inheritance: BasicSynapse
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode 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 méthode

Clone this object.
public Clone ( ) : object
Résultat object

Compute() public méthode

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.
Résultat INeuralData

CreatePersistor() public méthode

Return a persistor for this object.
public CreatePersistor ( ) : IPersistor
Résultat IPersistor

WeightedSynapse() public méthode

Simple default constructor.
public WeightedSynapse ( ) : System
Résultat System

WeightedSynapse() public méthode

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.
Résultat System