NgramExtractingEstimator.WeightingCriteria Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A statistical measure used to evaluate how important a word is to a document in a corpus. This enumeration is serialized.
public enum NgramExtractingEstimator.WeightingCriteria
type NgramExtractingEstimator.WeightingCriteria =
Public Enum NgramExtractingEstimator.WeightingCriteria
- Inheritance
-
NgramExtractingEstimator.WeightingCriteria
Fields
Name | Value | Description |
---|---|---|
Tf | 0 | Term Frequency. Calculated based on the number of occurrences in the document. |
Idf | 1 | Inverse Document Frequency. A ratio (the logarithm of inverse relative frequency) that measures the information a slot provides by determining how common or rare it is across the entire corpus. |
TfIdf | 2 | The product of the term frequency and the inverse document frequency. |