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 = 0Fast weights are added to base weights: θ' = θ + α
FiLM = 2Feature-wise Linear Modulation: output' = γ × output + β
Multiplicative = 1Fast weights scale base weights: θ' = θ × (1 + α)