C# Class Encog.Neural.PNN.AbstractPNN

Inheritance: Encog.ML.BasicML
Mostrar archivo Open project: encog/encog-silverlight-core

Public Methods

Method Description
Compute ( IMLData input ) : IMLData

Compute the output from the network.

ResetConfusion ( ) : void

Reset the confusion.

Protected Methods

Method Description
AbstractPNN ( PNNKernelType kernel, PNNOutputMode outputMode, int inputCount, int outputCount ) : System

Constructor.

Method Details

AbstractPNN() protected method

Constructor.
protected AbstractPNN ( PNNKernelType kernel, PNNOutputMode outputMode, int inputCount, int outputCount ) : System
kernel PNNKernelType The kernel type to use.
outputMode PNNOutputMode The output mode to use.
inputCount int The input count.
outputCount int The output count.
return System

Compute() public abstract method

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

ResetConfusion() public method

Reset the confusion.
public ResetConfusion ( ) : void
return void