public protocol ParameterlessLayer : Layer where Self.TangentVector == EmptyTangentVector
A parameterless neural network layer.
The TangentVector
of parameterless layers is always EmptyTangentVector
.
-
Declaration
@differentiable func callAsFunction(_ input: Input) -> Output
-
move(along:)
Declaration
public mutating mutating func move(along direction: EmptyTangentVector)
-
differentiableVectorView
Declaration
public var differentiableVectorView: EmptyTangentVector { get }