C# Class Encog.Engine.Network.Flat.FlatNetworkRBF

A flat network designed to handle an RBF.
Inheritance: FlatNetwork
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode Description
Clone ( ) : object

Clone the network.

Compute ( double x, double output ) : void

Calculate the output for the given input.

FlatNetworkRBF ( ) : Encog.Engine.Network.Activation

Default constructor.

FlatNetworkRBF ( int inputCount, int hiddenCount, int outputCount, IRadialBasisFunction rbf ) : Encog.Engine.Network.Activation

Construct an RBF flat network.

Method Details

Clone() public méthode

Clone the network.
public Clone ( ) : object
Résultat object

Compute() public méthode

Calculate the output for the given input.
public Compute ( double x, double output ) : void
x double The input.
output double Output will be placed here.
Résultat void

FlatNetworkRBF() public méthode

Default constructor.
public FlatNetworkRBF ( ) : Encog.Engine.Network.Activation
Résultat Encog.Engine.Network.Activation

FlatNetworkRBF() public méthode

Construct an RBF flat network.
public FlatNetworkRBF ( int inputCount, int hiddenCount, int outputCount, IRadialBasisFunction rbf ) : Encog.Engine.Network.Activation
inputCount int The number of input neurons. (also the number of dimensions)
hiddenCount int The number of hidden neurons.
outputCount int The number of output neurons.
rbf IRadialBasisFunction The RBF's to use.
Résultat Encog.Engine.Network.Activation