Table of Contents

Enum NTMControllerType

Namespace
AiDotNet.MetaLearning.Options
Assembly
AiDotNet.dll

Controller type for Neural Turing Machine.

public enum NTMControllerType

Fields

LSTM = 0

LSTM controller for sequential data processing.

MLP = 1

MLP controller for fixed-size data processing.

Remarks

For Beginners: The controller is the "brain" of the NTM that decides what to read from and write to memory. LSTM is better for sequential data, while MLP works for fixed-size inputs.