共用方式為


TensorPrimitives.SoftMax 方法

定義

多載

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

在單精度浮點數的指定非空白張量上計算 softmax 函式。

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

在指定的非空白數位張量上計算softmax函式。

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

來源:
TensorPrimitives.cs
來源:
TensorPrimitives.Single.cs
來源:
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>)

來源:
TensorPrimitives.SoftMax.cs
來源:
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 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。

適用於