2 writes to _weightageKind
Microsoft.ML.Ensemble (2)
OutputCombiners\WeightedAverage.cs (2)
56_weightageKind = options.WeightageName; 65_weightageKind = (WeightageKind)ctx.Reader.ReadInt32();
5 references to _weightageKind
Microsoft.ML.Ensemble (5)
OutputCombiners\WeightedAverage.cs (5)
51public string WeightageMetricName { get { return _weightageKind.ToString(); } } 57Host.CheckUserArg(Enum.IsDefined(typeof(WeightageKind), _weightageKind), nameof(options.WeightageName)); 66Host.CheckDecode(Enum.IsDefined(typeof(WeightageKind), _weightageKind)); 85Contracts.Assert(Enum.IsDefined(typeof(WeightageKind), _weightageKind)); 86ctx.Writer.Write((int)_weightageKind);