Enum ScoringFunctionInterpolation
Defines the function used to interpolate score boosting across a range of documents.
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Search.Documents.dll
Syntax
public enum ScoringFunctionInterpolation
Constant
Boosts scores by a constant factor.
Linear
Boosts scores by a linearly decreasing amount. This is the default interpolation for scoring functions.
Logarithmic
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.
Quadratic
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.