ScoringFunctionInterpolation 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.
Defines the function used to interpolate score boosting across a range of documents.
public enum ScoringFunctionInterpolation
type ScoringFunctionInterpolation =
Public Enum ScoringFunctionInterpolation
- Inheritance
-
ScoringFunctionInterpolation
Fields
Name | Value | Description |
---|---|---|
Linear | 0 | Boosts scores by a linearly decreasing amount. This is the default interpolation for scoring functions. |
Constant | 1 | Boosts scores by a constant factor. |
Quadratic | 2 | Boosts scores by an amount that decreases quadratically. Boosts decrease slowly for higher scores, and more quickly as the scores decrease. This interpolation option is not allowed in tag scoring functions. |
Logarithmic | 3 | Boosts scores by an amount that decreases logarithmically. Boosts decrease quickly for higher scores, and more slowly as the scores decrease. This interpolation option is not allowed in tag scoring functions. |
Applies to
Azure SDK for .NET