C# Class Encog.Neural.Thermal.ThermalNetwork

Inheritance: Encog.ML.BasicML, IMLAutoAssocation, IMLResettable
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

Méthode Description
AddWeight ( int fromNeuron, int toNeuron, double v ) : void

Add to the specified weight.

CalculateEnergy ( ) : double
Clear ( ) : void

Clear any connection weights.

Compute ( IMLData input ) : IMLData

from Encog.ml.MLRegression

GetWeight ( int fromNeuron, int toNeuron ) : double

Get a weight.

Init ( int neuronCount, double weights, double output ) : void

Init the network.

Reset ( ) : void

Reset ( int seed ) : void

SetCurrentState ( double s ) : void

Set the current state.

SetWeight ( int fromNeuron, int toNeuron, double v ) : void

Set the weight.

Méthodes protégées

Méthode Description
ThermalNetwork ( ) : Encog.ML

Default constructor.

ThermalNetwork ( int neuronCount ) : Encog.ML

Construct the network with the specicified neuron count.

Method Details

AddWeight() public méthode

Add to the specified weight.
public AddWeight ( int fromNeuron, int toNeuron, double v ) : void
fromNeuron int The from neuron.
toNeuron int The to neuron.
v double The value to add.
Résultat void

CalculateEnergy() public méthode

public CalculateEnergy ( ) : double
Résultat double

Clear() public méthode

Clear any connection weights.
public Clear ( ) : void
Résultat void

Compute() public abstract méthode

from Encog.ml.MLRegression
public abstract Compute ( IMLData input ) : IMLData
input IMLData
Résultat IMLData

GetWeight() public méthode

Get a weight.
public GetWeight ( int fromNeuron, int toNeuron ) : double
fromNeuron int The from neuron.
toNeuron int The to neuron.
Résultat double

Init() public méthode

Init the network.
public Init ( int neuronCount, double weights, double output ) : void
neuronCount int The neuron count.
weights double The weights.
output double The toutpu
Résultat void

Reset() public méthode

public Reset ( ) : void
Résultat void

Reset() public méthode

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

SetCurrentState() public méthode

Set the current state.
public SetCurrentState ( double s ) : void
s double The new current state.
Résultat void

SetWeight() public méthode

Set the weight.
public SetWeight ( int fromNeuron, int toNeuron, double v ) : void
fromNeuron int The from neuron.
toNeuron int The to neuron.
v double The value.
Résultat void

ThermalNetwork() protected méthode

Default constructor.
protected ThermalNetwork ( ) : Encog.ML
Résultat Encog.ML

ThermalNetwork() protected méthode

Construct the network with the specicified neuron count.
protected ThermalNetwork ( int neuronCount ) : Encog.ML
neuronCount int The number of neurons.
Résultat Encog.ML