C# 클래스 numl.Math.Functions.Softmax

Softmax function
상속: IFunction
파일 보기 프로젝트 열기: sethjuarez/numl

공개 메소드들

메소드 설명
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.

메소드 상세

Compute() 공개 메소드

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

Compute() 공개 메소드

Not used.
public Compute ( double x ) : double
x double
리턴 double

Derivative() 공개 메소드

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

Derivative() 공개 메소드

Not used.
public Derivative ( double x ) : double
x double
리턴 double

Minimize() 공개 메소드

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