KeyPhraseExtractionSkill Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
KeyPhraseExtractionSkill() |
Inicializa uma nova instância da classe KeyPhraseExtractionSkill. |
KeyPhraseExtractionSkill(IList<InputFieldMappingEntry>, IList<OutputFieldMappingEntry>, String, String, String, Nullable<KeyPhraseExtractionSkillLanguage>, Nullable<Int32>) |
Inicializa uma nova instância da classe KeyPhraseExtractionSkill. |
KeyPhraseExtractionSkill()
- Origem:
- KeyPhraseExtractionSkill.cs
Inicializa uma nova instância da classe KeyPhraseExtractionSkill.
public KeyPhraseExtractionSkill ();
Public Sub New ()
Aplica-se a
KeyPhraseExtractionSkill(IList<InputFieldMappingEntry>, IList<OutputFieldMappingEntry>, String, String, String, Nullable<KeyPhraseExtractionSkillLanguage>, Nullable<Int32>)
- Origem:
- KeyPhraseExtractionSkill.cs
Inicializa uma nova instância da 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)
Parâmetros
- inputs
- IList<InputFieldMappingEntry>
As entradas das habilidades podem ser uma coluna no conjunto de dados de origem ou a saída de uma habilidade upstream.
- outputs
- IList<OutputFieldMappingEntry>
A saída de uma habilidade é um campo em um índice de pesquisa ou um valor que pode ser consumido como uma entrada por outra habilidade.
- name
- String
O nome da habilidade que a identifica exclusivamente dentro do conjunto de habilidades. Uma habilidade sem nome definido receberá um nome padrão de seu índice baseado em 1 na matriz de habilidades, prefixado com o caractere '#'.
- description
- String
A descrição da habilidade que descreve as entradas, as saídas e o uso da habilidade.
- context
- String
Representa o nível em que as operações ocorrem, como a raiz do documento ou o conteúdo do documento (por exemplo, /document ou /document/content). O padrão é /document.
- defaultLanguageCode
- Nullable<KeyPhraseExtractionSkillLanguage>
Um valor que indica qual código de idioma usar. O padrão é en. Os valores possíveis incluem: 'da', 'nl', 'en', 'fi', 'fr', 'de', 'it', 'ja', 'ko', 'no', 'pl', 'pt-PT', 'pt-BR', 'ru', 'es', 'sv'
Um número que indica quantas frases-chave devem ser retornadas. Se estiver ausente, todas as frases-chave identificadas serão retornadas.
Aplica-se a
Azure SDK for .NET