Partager via


KeyPhraseExtractionSkill Constructeurs

Définition

Surcharges

KeyPhraseExtractionSkill()

Initialise une nouvelle instance de la classe KeyPhraseExtractionSkill.

KeyPhraseExtractionSkill(IList<InputFieldMappingEntry>, IList<OutputFieldMappingEntry>, String, String, String, Nullable<KeyPhraseExtractionSkillLanguage>, Nullable<Int32>)

Initialise une nouvelle instance de la classe KeyPhraseExtractionSkill.

KeyPhraseExtractionSkill()

Source:
KeyPhraseExtractionSkill.cs

Initialise une nouvelle instance de la classe KeyPhraseExtractionSkill.

public KeyPhraseExtractionSkill ();
Public Sub New ()

S’applique à

KeyPhraseExtractionSkill(IList<InputFieldMappingEntry>, IList<OutputFieldMappingEntry>, String, String, String, Nullable<KeyPhraseExtractionSkillLanguage>, Nullable<Int32>)

Source:
KeyPhraseExtractionSkill.cs

Initialise une nouvelle instance de la classe KeyPhraseExtractionSkill.

public KeyPhraseExtractionSkill (System.Collections.Generic.IList<Microsoft.Azure.Search.Models.InputFieldMappingEntry> inputs, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.OutputFieldMappingEntry> outputs, string name = default, string description = default, string context = default, Microsoft.Azure.Search.Models.KeyPhraseExtractionSkillLanguage? defaultLanguageCode = default, int? maxKeyPhraseCount = default);
new Microsoft.Azure.Search.Models.KeyPhraseExtractionSkill : System.Collections.Generic.IList<Microsoft.Azure.Search.Models.InputFieldMappingEntry> * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.OutputFieldMappingEntry> * string * string * string * Nullable<Microsoft.Azure.Search.Models.KeyPhraseExtractionSkillLanguage> * Nullable<int> -> Microsoft.Azure.Search.Models.KeyPhraseExtractionSkill
Public Sub New (inputs As IList(Of InputFieldMappingEntry), outputs As IList(Of OutputFieldMappingEntry), Optional name As String = Nothing, Optional description As String = Nothing, Optional context As String = Nothing, Optional defaultLanguageCode As Nullable(Of KeyPhraseExtractionSkillLanguage) = Nothing, Optional maxKeyPhraseCount As Nullable(Of Integer) = Nothing)

Paramètres

inputs
IList<InputFieldMappingEntry>

Les entrées des compétences peuvent être une colonne dans le jeu de données source ou la sortie d’une compétence amont.

outputs
IList<OutputFieldMappingEntry>

La sortie d’une compétence est soit un champ dans un index de recherche, soit une valeur qui peut être consommée en tant qu’entrée par une autre compétence.

name
String

Nom de la compétence qui l’identifie de manière unique dans l’ensemble de compétences. Une compétence sans nom défini reçoit un nom par défaut de son index 1 dans le tableau de compétences, précédé du caractère « # ».

description
String

Description de la compétence qui décrit les entrées, les sorties et l’utilisation de la compétence.

context
String

Représente le niveau auquel les opérations ont lieu, comme la racine du document ou le contenu du document (par exemple, /document ou /document/content). La valeur par défaut est /document.

defaultLanguageCode
Nullable<KeyPhraseExtractionSkillLanguage>

Valeur indiquant le code de langue à utiliser. La valeur par défaut est en. Les valeurs possibles sont les suivantes : 'da', 'nl', 'en', 'fi', 'fr', 'de', 'it', 'ja', 'ko', 'no', 'pl', 'pt-PT', 'pt-BR', 'ru', 'es', 'sv'

maxKeyPhraseCount
Nullable<Int32>

Nombre indiquant le nombre d’expressions clés à retourner. En cas d’absence, toutes les expressions clés identifiées sont retournées.

S’applique à