6 references to ProbabilityNormalization
Microsoft.ML.StandardTrainers (6)
Standard\MulticlassClassification\OneVersusAllTrainer.cs (6)
285
/// <see cref="
ProbabilityNormalization
"/>: fetch probability output of each class probability from provided predictors and make sure the sume of class probabilities is one.
313
if (outputFormula == OutputFormula.
ProbabilityNormalization
&&
340
var outputFormula = useProbability ? OutputFormula.
ProbabilityNormalization
: OutputFormula.Raw;
353
return Create(host, OutputFormula.
ProbabilityNormalization
, predictors);
382
else if (outputFormula == OutputFormula.
ProbabilityNormalization
)
702
OutputFormula = OutputFormula.
ProbabilityNormalization
;