2 instantiations of LdaState
Microsoft.ML.Transforms (2)
Text\LdaTransform.cs (2)
685_ldas[i] = new LdaState(Host, ctx); 931var state = new LdaState(env, columns[i], numVocabs[i]);
9 references to LdaState
Microsoft.ML.Transforms (9)
Text\LdaTransform.cs (9)
221var ldaState = _ldas[columnIndex]; 609var lda = _parent._ldas[iinfo]; 636private readonly LdaState[] _ldas; 659LdaState[] ldas, 682_ldas = new LdaState[columnsLength]; 692var ldas = new LdaState[columns.Length]; 707foreach (var state in _ldas) 822private static List<VBuffer<ReadOnlyMemory<char>>> Train(IHostEnvironment env, IChannel ch, IDataView inputData, LdaState[] states, params LatentDirichletAllocationEstimator.ColumnOptions[] columns) 931var state = new LdaState(env, columns[i], numVocabs[i]);