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.
Overloads
| Name | Description |
|---|---|
| ScoringFunction(String, Double, Nullable<ScoringFunctionInterpolation>, String) |
Base type for functions that can modify document scores during ranking. |
| ScoringFunction(String, String, Double, Nullable<ScoringFunctionInterpolation>) |
Initializes a new instance of ScoringFunction. |
ScoringFunction(String, Double, Nullable<ScoringFunctionInterpolation>, String)
- Source:
- SearchModelFactory.cs
Base type for functions that can modify document scores during ranking.
public static Azure.Search.Documents.Indexes.Models.ScoringFunction ScoringFunction(string fieldName = default, double boost = 0, Azure.Search.Documents.Indexes.Models.ScoringFunctionInterpolation? interpolation = default, string type = default);
static member ScoringFunction : string * double * Nullable<Azure.Search.Documents.Indexes.Models.ScoringFunctionInterpolation> * string -> Azure.Search.Documents.Indexes.Models.ScoringFunction
Public Shared Function ScoringFunction (Optional fieldName As String = Nothing, Optional boost As Double = 0, Optional interpolation As Nullable(Of ScoringFunctionInterpolation) = Nothing, Optional type As String = Nothing) As ScoringFunction
Parameters
- 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".
- type
- String
Type of ScoringFunction.
Returns
A new ScoringFunction instance for mocking.
Applies to
ScoringFunction(String, String, Double, Nullable<ScoringFunctionInterpolation>)
- Source:
- SearchModelFactory.cs
- Source:
- SearchModelFactory.cs
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".