C# Class Encog.Neural.Networks.Logic.BoltzmannLogic

Inheritance: ThermalLogic
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

Méthode Description
Compute ( INeuralData input, NeuralOutputHolder useHolder ) : INeuralData

Setup the network logic, read parameters from the network. NOT USED, call the run method.

DecreaseTemperature ( double d ) : void

Decrease the temperature by the specified amount.

EstablishEquilibrium ( ) : void

Run the network until thermal equalibrium is established.

Init ( BasicNetwork network ) : void

Setup the network logic, read parameters from the network.

Run ( ) : void

Run the network for all neurons present.

Run ( int i ) : void

Run the network for the specified neuron.

Method Details

Compute() public méthode

Setup the network logic, read parameters from the network. NOT USED, call the run method.
public Compute ( INeuralData input, NeuralOutputHolder useHolder ) : INeuralData
input INeuralData Not used
useHolder NeuralOutputHolder Not used
Résultat INeuralData

DecreaseTemperature() public méthode

Decrease the temperature by the specified amount.
public DecreaseTemperature ( double d ) : void
d double The amount to decrease b
Résultat void

EstablishEquilibrium() public méthode

Run the network until thermal equalibrium is established.
public EstablishEquilibrium ( ) : void
Résultat void

Init() public méthode

Setup the network logic, read parameters from the network.
public Init ( BasicNetwork network ) : void
network BasicNetwork The network that this logic class belongs to.
Résultat void

Run() public méthode

Run the network for all neurons present.
public Run ( ) : void
Résultat void

Run() public méthode

Run the network for the specified neuron.
public Run ( int i ) : void
i int The neuron to run for.
Résultat void