1 write to _topics
Microsoft.ML.Transforms (1)
Text\LdaSingleBox.cs (1)
127
_topics
= new int[numTopic];
10 references to _topics
Microsoft.ML.Transforms (10)
Text\LdaSingleBox.cs (10)
186
LdaInterface.GetWordTopic(trainer._engine, wordId,
_topics
, _probabilities, ref length);
187
LdaInterface.SetWordTopic(_engine, wordId,
_topics
, _probabilities, length);
227
LdaInterface.GetDocTopic(_engine, docID,
_topics
, _probabilities, ref numTopicReturn);
234
while (currentTopic <
_topics
[i])
241
topicRet.Add(new KeyValuePair<int, float>(
_topics
[i], _probabilities[i] + (float)_alpha));
246
topicRet.Add(new KeyValuePair<int, float>(
_topics
[i], (float)_probabilities[i]));
338
LdaInterface.GetWordTopic(_engine, wordId,
_topics
, _probabilities, ref length);
342
wordTopicVector[i] = new KeyValuePair<int, int>(
_topics
[i], _probabilities[i]);
361
Array.Copy(topicID,
_topics
, topicNum);
363
LdaInterface.SetWordTopic(_engine, termID,
_topics
, _probabilities, topicNum);