Sigmoid

public struct Sigmoid<Element, Device> : LayerType, Codable where Element : NumericType, Device : DeviceType

Element-wise sigmoid activation layer.

  • Declaration

    Swift

    public var parameterPaths: [WritableKeyPath<`Self`, Tensor<Element, Device>>] { get }
  • Declaration

    Swift

    public var parameters: [Tensor<Element, Device>] { get }
  • Element-wise sigmoid activation layer.

    Declaration

    Swift

    public init()
  • Declaration

    Swift

    public func callAsFunction(_ inputs: Tensor<Element, Device>) -> Tensor<Element, Device>