C# Class numl.Math.Functions.Softmax

Softmax function
Inheritance: IFunction
Mostra file Open project: sethjuarez/numl

Public Methods

Method Description
Compute ( Vector x ) : Vector

Returns a softmax function vector from the supplied inputs.

Compute ( double x ) : double

Not used.

Derivative ( Vector x ) : Vector

Computes the derivation of the softmax function.

Derivative ( double x ) : double

Not used.

Minimize ( Vector x ) : double

Returns the maximum value index of the computed softmax vector.

Method Details

Compute() public method

Returns a softmax function vector from the supplied inputs.
public Compute ( Vector x ) : Vector
x numl.Math.LinearAlgebra.Vector
return numl.Math.LinearAlgebra.Vector

Compute() public method

Not used.
public Compute ( double x ) : double
x double
return double

Derivative() public method

Computes the derivation of the softmax function.
public Derivative ( Vector x ) : Vector
x numl.Math.LinearAlgebra.Vector
return numl.Math.LinearAlgebra.Vector

Derivative() public method

Not used.
public Derivative ( double x ) : double
x double
return double

Minimize() public method

Returns the maximum value index of the computed softmax vector.
public Minimize ( Vector x ) : double
x numl.Math.LinearAlgebra.Vector Vector.
return double