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