2 writes to Weighting
Microsoft.ML.Transforms (2)
Text\NgramTransform.cs (2)
137Weighting = info.Weighting; 159Weighting = (NgramExtractingEstimator.WeightingCriteria)ctx.Reader.ReadInt32();
7 references to Weighting
Microsoft.ML.Transforms (7)
Text\NgramTransform.cs (7)
131public bool RequireIdf => Weighting == NgramExtractingEstimator.WeightingCriteria.Idf || Weighting == NgramExtractingEstimator.WeightingCriteria.TfIdf; 160Contracts.CheckDecode(Enum.IsDefined(typeof(NgramExtractingEstimator.WeightingCriteria), Weighting)); 179Contracts.Assert(Enum.IsDefined(typeof(NgramExtractingEstimator.WeightingCriteria), Weighting)); 180ctx.Writer.Write((int)Weighting); 685switch (_parent._transformInfos[iinfo].Weighting) 811mode = transformInfo.Weighting == NgramExtractingEstimator.WeightingCriteria.Idf ? "IDF" : "TFIDF";