3 writes to DcgTruncationLevel
Microsoft.ML.AutoML (1)
Experiment\MetricsAgents\RankingMetricsAgent.cs (1)
73DcgTruncationLevel = Math.Max(10, 2 * (int)_dcgTruncationLevel)
Microsoft.ML.Data (1)
Evaluators\RankingEvaluator.cs (1)
884evalOpts.DcgTruncationLevel = args.DcgTruncationLevel;
Microsoft.ML.IntegrationTests (1)
Evaluation.cs (1)
214options.DcgTruncationLevel = i;
3 references to DcgTruncationLevel
Microsoft.ML.Data (3)
Evaluators\RankingEvaluator.cs (3)
77if (options.DcgTruncationLevel <= 0) 78throw Host.ExceptUserArg(nameof(options.DcgTruncationLevel), "DCG Truncation Level must be greater than 0"); 81_truncationLevel = options.DcgTruncationLevel;