C# Class numl.Math.Functions.Softmax

Softmax function
Inheritance: IFunction
Afficher le fichier Open project: sethjuarez/numl

Méthodes publiques

Méthode 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 méthode

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

Compute() public méthode

Not used.
public Compute ( double x ) : double
x double
Résultat double

Derivative() public méthode

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

Derivative() public méthode

Not used.
public Derivative ( double x ) : double
x double
Résultat double

Minimize() public méthode

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