TensorPrimitives.SoftMax 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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
和 destination
引用重叠的内存位置,并且不在同一位置开始。
注解
此方法有效地计算 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
参数
张量,表示为范围。
- destination
- Span<T>
目标张量。
例外
x
和 destination
引用重叠的内存位置,并且不在同一位置开始。
注解
此方法有效地计算 x
中所有元素的
之和。 然后,它有效地计算 T
.Exp(x[i])
。destination
[i] = T
.Exp(x
[i]) / sum
此方法可以调用基础 C 运行时,或使用特定于当前体系结构的说明。 不同的操作系统或体系结构之间的确切结果可能有所不同。