Table of Contents

Enum LdaLearningMethod

Namespace
AiDotNet.Preprocessing.DimensionalityReduction
Assembly
AiDotNet.dll

Specifies the learning method for LDA.

public enum LdaLearningMethod

Fields

Batch = 0

Batch variational Bayes. Uses all data at each iteration. More accurate but slower for large datasets.

Online = 1

Online variational Bayes. Uses mini-batches. Faster and more scalable for large datasets.