TensorPrimitives.Sigmoid 方法

定义

重载

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

计算单精度浮点数的指定非空张量上的元素级 sigmoid 函数。

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

计算指定非空数值张量上的元素级 sigmoid 函数。

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

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

计算单精度浮点数的指定非空张量上的元素级 sigmoid 函数。

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

参数

x
ReadOnlySpan<Single>

张量,表示为范围。

destination
Span<Single>

目标张量。

例外

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

注解

此方法有效地计算 destination[i] = 1f / (1f + MathF.Exp(-x[i]))

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

适用于

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

Source:
TensorPrimitives.Sigmoid.cs

计算指定非空数值张量上的元素级 sigmoid 函数。

public:
generic <typename T>
 where T : System::Numerics::IExponentialFunctions<T> static void Sigmoid(ReadOnlySpan<T> x, Span<T> destination);
public static void Sigmoid<T> (ReadOnlySpan<T> x, Span<T> destination) where T : System.Numerics.IExponentialFunctions<T>;
static member Sigmoid : 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 Sigmoid(Of T As IExponentialFunctions(Of T)) (x As ReadOnlySpan(Of T), destination As Span(Of T))

类型参数

T

参数

x
ReadOnlySpan<T>

张量,表示为范围。

destination
Span<T>

目标张量。

例外

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

注解

此方法有效地计算 destination[i] = 1f / (1f + T.Exp(-x[i]))

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

适用于