47 references to Defaults
Microsoft.ML.Transforms (47)
Text\LdaTransform.cs (36)
62public int NumTopic = LatentDirichletAllocationEstimator.Defaults.NumberOfTopics; 67public float AlphaSum = LatentDirichletAllocationEstimator.Defaults.AlphaSum; 72public float Beta = LatentDirichletAllocationEstimator.Defaults.Beta; 77public int Mhstep = LatentDirichletAllocationEstimator.Defaults.SamplingStepCount; 82public int NumIterations = LatentDirichletAllocationEstimator.Defaults.MaximumNumberOfIterations; 85public int LikelihoodInterval = LatentDirichletAllocationEstimator.Defaults.LikelihoodInterval; 89public int NumThreads = LatentDirichletAllocationEstimator.Defaults.NumberOfThreads; 92public int NumMaxDocToken = LatentDirichletAllocationEstimator.Defaults.MaximumTokenCountPerDocument; 95public int NumSummaryTermPerTopic = LatentDirichletAllocationEstimator.Defaults.NumberOfSummaryTermsPerTopic; 100public int NumBurninIterations = LatentDirichletAllocationEstimator.Defaults.NumberOfBurninIterations; 103public bool ResetRandomGenerator = LatentDirichletAllocationEstimator.Defaults.ResetRandomGenerator; 106public bool OutputTopicWordSummary = LatentDirichletAllocationEstimator.Defaults.OutputTopicWordSummary; 1069int numberOfTopics = Defaults.NumberOfTopics, 1070float alphaSum = Defaults.AlphaSum, 1071float beta = Defaults.Beta, 1072int samplingStepCount = Defaults.SamplingStepCount, 1073int maximumNumberOfIterations = Defaults.MaximumNumberOfIterations, 1074int numberOfThreads = Defaults.NumberOfThreads, 1075int maximumTokenCountPerDocument = Defaults.MaximumTokenCountPerDocument, 1076int numberOfSummaryTermsPerTopic = Defaults.NumberOfSummaryTermsPerTopic, 1077int likelihoodInterval = Defaults.LikelihoodInterval, 1078int numberOfBurninIterations = Defaults.NumberOfBurninIterations, 1079bool resetRandomGenerator = Defaults.ResetRandomGenerator, 1080bool outputTopicWordSummary = Defaults.OutputTopicWordSummary) 1178int numberOfTopics = LatentDirichletAllocationEstimator.Defaults.NumberOfTopics, 1179float alphaSum = LatentDirichletAllocationEstimator.Defaults.AlphaSum, 1180float beta = LatentDirichletAllocationEstimator.Defaults.Beta, 1181int samplingStepCount = LatentDirichletAllocationEstimator.Defaults.SamplingStepCount, 1182int maximumNumberOfIterations = LatentDirichletAllocationEstimator.Defaults.MaximumNumberOfIterations, 1183int likelihoodInterval = LatentDirichletAllocationEstimator.Defaults.LikelihoodInterval, 1184int numberOfThreads = LatentDirichletAllocationEstimator.Defaults.NumberOfThreads, 1185int maximumTokenCountPerDocument = LatentDirichletAllocationEstimator.Defaults.MaximumTokenCountPerDocument, 1186int numberOfSummaryTermsPerTopic = LatentDirichletAllocationEstimator.Defaults.NumberOfSummaryTermsPerTopic, 1187int numberOfBurninIterations = LatentDirichletAllocationEstimator.Defaults.NumberOfBurninIterations, 1188bool resetRandomGenerator = LatentDirichletAllocationEstimator.Defaults.ResetRandomGenerator, 1189bool outputTopicWordSummary = LatentDirichletAllocationEstimator.Defaults.OutputTopicWordSummary)
Text\TextCatalog.cs (11)
625int numberOfTopics = LatentDirichletAllocationEstimator.Defaults.NumberOfTopics, 626float alphaSum = LatentDirichletAllocationEstimator.Defaults.AlphaSum, 627float beta = LatentDirichletAllocationEstimator.Defaults.Beta, 628int samplingStepCount = LatentDirichletAllocationEstimator.Defaults.SamplingStepCount, 629int maximumNumberOfIterations = LatentDirichletAllocationEstimator.Defaults.MaximumNumberOfIterations, 630int likelihoodInterval = LatentDirichletAllocationEstimator.Defaults.LikelihoodInterval, 631int numberOfThreads = LatentDirichletAllocationEstimator.Defaults.NumberOfThreads, 632int maximumTokenCountPerDocument = LatentDirichletAllocationEstimator.Defaults.MaximumTokenCountPerDocument, 633int numberOfSummaryTermsPerTopic = LatentDirichletAllocationEstimator.Defaults.NumberOfSummaryTermsPerTopic, 634int numberOfBurninIterations = LatentDirichletAllocationEstimator.Defaults.NumberOfBurninIterations, 635bool resetRandomGenerator = LatentDirichletAllocationEstimator.Defaults.ResetRandomGenerator)