ScoringProfile コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
ScoringProfile() |
ScoringProfile クラスの新しいインスタンスを初期化します。 |
ScoringProfile(String, TextWeights, IList<ScoringFunction>, Nullable<ScoringFunctionAggregation>) |
ScoringProfile クラスの新しいインスタンスを初期化します。 |
ScoringProfile()
ScoringProfile クラスの新しいインスタンスを初期化します。
public ScoringProfile ();
Public Sub New ()
適用対象
ScoringProfile(String, TextWeights, IList<ScoringFunction>, Nullable<ScoringFunctionAggregation>)
ScoringProfile クラスの新しいインスタンスを初期化します。
public ScoringProfile (string name, Microsoft.Azure.Search.Models.TextWeights textWeights = default, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.ScoringFunction> functions = default, Microsoft.Azure.Search.Models.ScoringFunctionAggregation? functionAggregation = default);
new Microsoft.Azure.Search.Models.ScoringProfile : string * Microsoft.Azure.Search.Models.TextWeights * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.ScoringFunction> * Nullable<Microsoft.Azure.Search.Models.ScoringFunctionAggregation> -> Microsoft.Azure.Search.Models.ScoringProfile
Public Sub New (name As String, Optional textWeights As TextWeights = Nothing, Optional functions As IList(Of ScoringFunction) = Nothing, Optional functionAggregation As Nullable(Of ScoringFunctionAggregation) = Nothing)
パラメーター
- name
- String
スコアリング プロファイルの名前。
- textWeights
- TextWeights
特定のインデックス フィールドのテキスト一致に基づいてスコアリングを向上させるパラメーター。
- functions
- IList<ScoringFunction>
ドキュメントのスコアリングに影響を与える関数のコレクション。
- functionAggregation
- Nullable<ScoringFunctionAggregation>
個々のスコアリング関数の結果を組み合わせる方法を示す値。 既定値は "Sum" です。 スコアリング関数がない場合は無視されます。 使用できる値は、'sum'、'average'、'minimum'、'maximum'、'firstMatching' です。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET