C# Class Encog.Neural.PNN.BasicPNN

Inheritance: AbstractPNN, IMLRegression
显示文件 Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
BasicPNN ( PNNKernelType kernel, PNNOutputMode outmodel, int inputCount, int outputCount ) : System

Construct a BasicPNN network.

Compute ( IMLData input ) : IMLData

Compute the output from this network.

UpdateProperties ( ) : void

Method Details

BasicPNN() public method

Construct a BasicPNN network.
public BasicPNN ( PNNKernelType kernel, PNNOutputMode outmodel, int inputCount, int outputCount ) : System
kernel PNNKernelType The kernel to use.
outmodel PNNOutputMode The output model for this network.
inputCount int The number of inputs in this network.
outputCount int The number of outputs in this network.
return System

Compute() public final method

Compute the output from this network.
public final Compute ( IMLData input ) : IMLData
input IMLData The input to the network.
return IMLData

UpdateProperties() public method

public UpdateProperties ( ) : void
return void