Table of Contents

Enum FastWeightApplicationMode

Namespace
AiDotNet.MetaLearning.Options
Assembly
AiDotNet.dll

Specifies how fast weights are applied to modify the base model.

public enum FastWeightApplicationMode

Fields

Additive = 0

Fast weights are added to base weights: θ' = θ + α

FiLM = 2

Feature-wise Linear Modulation: output' = γ × output + β

Multiplicative = 1

Fast weights scale base weights: θ' = θ × (1 + α)