SearchModelFactory.ScoringFunction Method
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.
Initializes a new instance of ScoringFunction.
public static Azure.Search.Documents.Indexes.Models.ScoringFunction ScoringFunction (string type, string fieldName, double boost, Azure.Search.Documents.Indexes.Models.ScoringFunctionInterpolation? interpolation);
static member ScoringFunction : string * string * double * Nullable<Azure.Search.Documents.Indexes.Models.ScoringFunctionInterpolation> -> Azure.Search.Documents.Indexes.Models.ScoringFunction
Public Shared Function ScoringFunction (type As String, fieldName As String, boost As Double, interpolation As Nullable(Of ScoringFunctionInterpolation)) As ScoringFunction
Parameters
- type
- String
Indicates the type of function to use. Valid values include magnitude, freshness, distance, and tag. The function type must be lower case.
- fieldName
- String
The name of the field used as input to the scoring function.
- boost
- Double
A multiplier for the raw score. Must be a positive number not equal to 1.0.
- interpolation
- Nullable<ScoringFunctionInterpolation>
A value indicating how boosting will be interpolated across document scores; defaults to "Linear".
Returns
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for .NET