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

Inheritance: ThermalLogic
Mostra file Open project: encog/encog-silverlight-core

Public Methods

Method 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 method

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
return INeuralData

DecreaseTemperature() public method

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

EstablishEquilibrium() public method

Run the network until thermal equalibrium is established.
public EstablishEquilibrium ( ) : void
return void

Init() public method

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

Run() public method

Run the network for all neurons present.
public Run ( ) : void
return void

Run() public method

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