Freigeben über


EntityRecognitionSkill Konstruktoren

Definition

Überlädt

EntityRecognitionSkill()

Initialisiert eine neue instance der EntityRecognitionSkill-Klasse.

EntityRecognitionSkill(IList<InputFieldMappingEntry>, IList<OutputFieldMappingEntry>, String, String, String, IList<EntityCategory>, Nullable<EntityRecognitionSkillLanguage>, Nullable<Boolean>, Nullable<Double>)

Initialisiert eine neue instance der EntityRecognitionSkill-Klasse.

EntityRecognitionSkill()

Quelle:
EntityRecognitionSkill.cs

Initialisiert eine neue instance der EntityRecognitionSkill-Klasse.

public EntityRecognitionSkill ();
Public Sub New ()

Gilt für:

EntityRecognitionSkill(IList<InputFieldMappingEntry>, IList<OutputFieldMappingEntry>, String, String, String, IList<EntityCategory>, Nullable<EntityRecognitionSkillLanguage>, Nullable<Boolean>, Nullable<Double>)

Quelle:
EntityRecognitionSkill.cs

Initialisiert eine neue instance der EntityRecognitionSkill-Klasse.

public EntityRecognitionSkill (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, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.EntityCategory> categories = default, Microsoft.Azure.Search.Models.EntityRecognitionSkillLanguage? defaultLanguageCode = default, bool? includeTypelessEntities = default, double? minimumPrecision = default);
new Microsoft.Azure.Search.Models.EntityRecognitionSkill : System.Collections.Generic.IList<Microsoft.Azure.Search.Models.InputFieldMappingEntry> * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.OutputFieldMappingEntry> * string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.EntityCategory> * Nullable<Microsoft.Azure.Search.Models.EntityRecognitionSkillLanguage> * Nullable<bool> * Nullable<double> -> Microsoft.Azure.Search.Models.EntityRecognitionSkill
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 categories As IList(Of EntityCategory) = Nothing, Optional defaultLanguageCode As Nullable(Of EntityRecognitionSkillLanguage) = Nothing, Optional includeTypelessEntities As Nullable(Of Boolean) = Nothing, Optional minimumPrecision As Nullable(Of Double) = Nothing)

Parameter

inputs
IList<InputFieldMappingEntry>

Eingaben der Skills können eine Spalte im Quelldataset oder die Ausgabe eines Upstream Skills sein.

outputs
IList<OutputFieldMappingEntry>

Die Ausgabe einer Qualifikation ist entweder ein Feld in einem Suchindex oder ein Wert, der von einem anderen Skill als Eingabe verwendet werden kann.

name
String

Der Name des Skills, der ihn innerhalb des Skillsets eindeutig identifiziert. Einem Skill ohne definierten Namen wird der Standardname seines 1-basierten Index im Skills-Array mit dem Präfix "#" zugewiesen.

description
String

Die Beschreibung des Skills, die die Eingaben, Ausgaben und Verwendung des Skills beschreibt.

context
String

Stellt die Ebene dar, auf der Vorgänge ausgeführt werden, z. B. den Dokumentstamm- oder Dokumentinhalt (z. B. /document oder /document/content). Der Standardwert ist /document.

categories
IList<EntityCategory>

Eine Liste der Entitätskategorien, die extrahiert werden sollen.

defaultLanguageCode
Nullable<EntityRecognitionSkillLanguage>

Ein -Wert, der angibt, welcher Sprachcode verwendet werden soll. Der Standardwert ist en. Mögliche Werte: "de", "en", "es", "fr", "it"

includeTypelessEntities
Nullable<Boolean>

Bestimmt, ob Entitäten einbezogen werden sollen, die zwar bekannt sind, aber nicht einem vordefinierten Typ entsprechen. Wenn diese Konfiguration nicht festgelegt (Standard), auf NULL oder auf false festgelegt ist, werden Entitäten, die nicht mit einem der vordefinierten Typen übereinstimmen, nicht angezeigt.

minimumPrecision
Nullable<Double>

Ein Wert zwischen 0 und 1, der verwendet wird, um nur Entitäten einzuschließen, deren Konfidenzbewertung größer als der angegebene Wert ist. Wenn nicht festgelegt (Standard) oder explizit auf NULL festgelegt ist, werden alle Entitäten eingeschlossen.

Gilt für: