TensorPrimitives.SoftMax 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
SoftMax(ReadOnlySpan<Single>, Span<Single>) |
在單精度浮點數的指定非空白張量上計算 softmax 函式。 |
SoftMax<T>(ReadOnlySpan<T>, Span<T>) |
在指定的非空白數位張量上計算softmax函式。 |
SoftMax(ReadOnlySpan<Single>, Span<Single>)
在單精度浮點數的指定非空白張量上計算 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
和 destination
參考重疊的記憶體位置,而且不會從相同的位置開始。
備註
此方法會有效地計算 x
中所有元素的 MathF.Exp(x[i])
總和。 然後,它會有效地計算
。destination
[i] = MathF.Exp(x
[i]) / sum
這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。
適用於
SoftMax<T>(ReadOnlySpan<T>, Span<T>)
在指定的非空白數位張量上計算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
參數
以範圍表示的張量。
- destination
- Span<T>
目的地張量。
例外狀況
x
和 destination
參考重疊的記憶體位置,而且不會從相同的位置開始。
備註
此方法會有效地計算 x
中所有元素的
總和。 然後,它會有效地計算 T
.Exp(x[i])
。destination
[i] = T
.Exp(x
[i]) / sum
這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。