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)
53public string WeightageMetricName { get { return _weightageKind.ToString(); } } 59Host.CheckUserArg(Enum.IsDefined(typeof(MultiWeightageKind), _weightageKind), nameof(options.WeightageName)); 69Host.CheckDecode(Enum.IsDefined(typeof(MultiWeightageKind), _weightageKind)); 87Host.Assert(Enum.IsDefined(typeof(MultiWeightageKind), _weightageKind)); 88ctx.Writer.Write((int)_weightageKind);