C# Class Encog.Neural.SOM.SOMNetwork

Inheritance: Encog.ML.BasicML, IMLClassification, IMLResettable, IMLError
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode Description
CalculateError ( IMLDataSet data ) : double
Classify ( IMLData input ) : int
Compute ( IMLData input ) : IMLData

Determine the winner for the specified input. This is the number of the winning neuron.

Reset ( ) : void
Reset ( int seed ) : void
SOMNetwork ( ) : Encog.MathUtil.Matrices

Default constructor.

SOMNetwork ( int inputCount, int outputCount ) : Encog.MathUtil.Matrices

The constructor.

UpdateProperties ( ) : void
Winner ( IMLData input ) : int

Determine the winner for the specified input. This is the number of the winning neuron.

Method Details

CalculateError() public méthode

public CalculateError ( IMLDataSet data ) : double
data IMLDataSet
Résultat double

Classify() public méthode

public Classify ( IMLData input ) : int
input IMLData
Résultat int

Compute() public méthode

Determine the winner for the specified input. This is the number of the winning neuron.
public Compute ( IMLData input ) : IMLData
input IMLData The input pattern.
Résultat IMLData

Reset() public méthode

public Reset ( ) : void
Résultat void

Reset() public méthode

public Reset ( int seed ) : void
seed int
Résultat void

SOMNetwork() public méthode

Default constructor.
public SOMNetwork ( ) : Encog.MathUtil.Matrices
Résultat Encog.MathUtil.Matrices

SOMNetwork() public méthode

The constructor.
public SOMNetwork ( int inputCount, int outputCount ) : Encog.MathUtil.Matrices
inputCount int Number of input neurons
outputCount int Number of output neurons
Résultat Encog.MathUtil.Matrices

UpdateProperties() public final méthode

public final UpdateProperties ( ) : void
Résultat void

Winner() public méthode

Determine the winner for the specified input. This is the number of the winning neuron.
public Winner ( IMLData input ) : int
input IMLData The input pattern.
Résultat int