Vector.LogSoftMax<T> Method

Computes the logarithm of the softmax function of a vector.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
public static Vector<T> LogSoftMax<T>(
	Vector<T> vector
)

Parameters

vector  Vector<T>
A vector.

Type Parameters

T

Return Value

Vector<T>
The logarithm of the softmax function applied to vector.

Exceptions

ArgumentNullException

vector is null.

See Also