2 writes to _weightageKind
Microsoft.ML.Ensemble (2)
OutputCombiners\MultiWeightedAverage.cs (2)
58
_weightageKind
= options.WeightageName;
68
_weightageKind
= (MultiWeightageKind)ctx.Reader.ReadInt32();
5 references to _weightageKind
Microsoft.ML.Ensemble (5)
OutputCombiners\MultiWeightedAverage.cs (5)
53
public string WeightageMetricName { get { return
_weightageKind
.ToString(); } }
59
Host.CheckUserArg(Enum.IsDefined(typeof(MultiWeightageKind),
_weightageKind
), nameof(options.WeightageName));
69
Host.CheckDecode(Enum.IsDefined(typeof(MultiWeightageKind),
_weightageKind
));
87
Host.Assert(Enum.IsDefined(typeof(MultiWeightageKind),
_weightageKind
));
88
ctx.Writer.Write((int)
_weightageKind
);