Enum LdaLearningMethod
- Namespace
- AiDotNet.Preprocessing.DimensionalityReduction
- Assembly
- AiDotNet.dll
Specifies the learning method for LDA.
public enum LdaLearningMethod
Fields
Batch = 0Batch variational Bayes. Uses all data at each iteration. More accurate but slower for large datasets.
Online = 1Online variational Bayes. Uses mini-batches. Faster and more scalable for large datasets.