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