C# Class Encog.Engine.Network.Activation.ActivationCompetitive

Inheritance: IActivationFunction
Show file Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
ActivationCompetitive ( ) : System

Create a competitive activation function with one winner allowed.

ActivationCompetitive ( int winners ) : System

Create a competitive activation function with the specified maximum number of winners.

ActivationFunction ( double x, int start, int size ) : void
DerivativeFunction ( double b, double a ) : double
HasDerivative ( ) : bool

Private Methods

Method Description
ICloneable ( ) : object

Clone the object.

Method Details

ActivationCompetitive() public method

Create a competitive activation function with one winner allowed.
public ActivationCompetitive ( ) : System
return System

ActivationCompetitive() public method

Create a competitive activation function with the specified maximum number of winners.
public ActivationCompetitive ( int winners ) : System
winners int The maximum number of winners that this function supports.
return System

ActivationFunction() public method

public ActivationFunction ( double x, int start, int size ) : void
x double
start int
size int
return void

DerivativeFunction() public method

public DerivativeFunction ( double b, double a ) : double
b double
a double
return double

HasDerivative() public method

public HasDerivative ( ) : bool
return bool