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)
186LdaInterface.GetWordTopic(trainer._engine, wordId, _topics, _probabilities, ref length); 187LdaInterface.SetWordTopic(_engine, wordId, _topics, _probabilities, length); 227LdaInterface.GetDocTopic(_engine, docID, _topics, _probabilities, ref numTopicReturn); 234while (currentTopic < _topics[i]) 241topicRet.Add(new KeyValuePair<int, float>(_topics[i], _probabilities[i] + (float)_alpha)); 246topicRet.Add(new KeyValuePair<int, float>(_topics[i], (float)_probabilities[i])); 338LdaInterface.GetWordTopic(_engine, wordId, _topics, _probabilities, ref length); 342wordTopicVector[i] = new KeyValuePair<int, int>(_topics[i], _probabilities[i]); 361Array.Copy(topicID, _topics, topicNum); 363LdaInterface.SetWordTopic(_engine, termID, _topics, _probabilities, topicNum);