TensorPrimitives.SoftMax 方法

定义

重载

SoftMax(ReadOnlySpan<Single>, Span<Single>)

通过指定的非空张量计算单精度浮点数的 softmax 函数。

SoftMax<T>(ReadOnlySpan<T>, Span<T>)

通过指定的非空张量计算 softmax 函数。

SoftMax(ReadOnlySpan<Single>, Span<Single>)

Source:
TensorPrimitives.cs
Source:
TensorPrimitives.Single.cs

通过指定的非空张量计算单精度浮点数的 softmax 函数。

public:
 static void SoftMax(ReadOnlySpan<float> x, Span<float> destination);
public static void SoftMax (ReadOnlySpan<float> x, Span<float> destination);
static member SoftMax : ReadOnlySpan<single> * Span<single> -> unit
Public Shared Sub SoftMax (x As ReadOnlySpan(Of Single), destination As Span(Of Single))

参数

x
ReadOnlySpan<Single>

张量,表示为范围。

destination
Span<Single>

目标张量。

例外

xdestination 引用重叠的内存位置,并且不在同一位置开始。

注解

此方法有效地计算 x中所有元素的 MathF.Exp(x[i]) 之和。 然后,它有效地计算 destination[i] = MathF.Exp(x[i]) / sum

此方法可以调用基础 C 运行时,或使用特定于当前体系结构的说明。 不同的操作系统或体系结构之间的确切结果可能有所不同。

适用于

SoftMax<T>(ReadOnlySpan<T>, Span<T>)

Source:
TensorPrimitives.SoftMax.cs

通过指定的非空张量计算 softmax 函数。

public:
generic <typename T>
 where T : System::Numerics::IExponentialFunctions<T> static void SoftMax(ReadOnlySpan<T> x, Span<T> destination);
public static void SoftMax<T> (ReadOnlySpan<T> x, Span<T> destination) where T : System.Numerics.IExponentialFunctions<T>;
static member SoftMax : ReadOnlySpan<'T (requires 'T :> System.Numerics.IExponentialFunctions<'T>)> * Span<'T (requires 'T :> System.Numerics.IExponentialFunctions<'T>)> -> unit (requires 'T :> System.Numerics.IExponentialFunctions<'T>)
Public Shared Sub SoftMax(Of T As IExponentialFunctions(Of T)) (x As ReadOnlySpan(Of T), destination As Span(Of T))

类型参数

T

参数

x
ReadOnlySpan<T>

张量,表示为范围。

destination
Span<T>

目标张量。

例外

xdestination 引用重叠的内存位置,并且不在同一位置开始。

注解

此方法有效地计算 x中所有元素的 T.Exp(x[i]) 之和。 然后,它有效地计算 destination[i] = T.Exp(x[i]) / sum

此方法可以调用基础 C 运行时,或使用特定于当前体系结构的说明。 不同的操作系统或体系结构之间的确切结果可能有所不同。

适用于