LeakyRelu

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

Element-wise leaky linear rectified unit activation layer.

  • Declaration

    Swift

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

    Swift

    public var parameters: [Tensor<Element, Device>] { get }
  • Undocumented

    Declaration

    Swift

    public var leakage: Element
  • Element-wise leaky rectified linear unit activation layer.

    Declaration

    Swift

    public init(leakage: Element)
  • Declaration

    Swift

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