Share via


NamedEntityRecognitionSkill Constructors

Definition

Overloads

NamedEntityRecognitionSkill()

Initializes a new instance of the NamedEntityRecognitionSkill class.

NamedEntityRecognitionSkill(IList<InputFieldMappingEntry>, IList<OutputFieldMappingEntry>, String, String, IList<NamedEntityCategory>, NamedEntityRecognitionSkillLanguage, Nullable<Double>)

Initializes a new instance of the NamedEntityRecognitionSkill class.

NamedEntityRecognitionSkill()

Source:
NamedEntityRecognitionSkill.cs

Initializes a new instance of the NamedEntityRecognitionSkill class.

public NamedEntityRecognitionSkill ();
Public Sub New ()

Applies to

NamedEntityRecognitionSkill(IList<InputFieldMappingEntry>, IList<OutputFieldMappingEntry>, String, String, IList<NamedEntityCategory>, NamedEntityRecognitionSkillLanguage, Nullable<Double>)

Source:
NamedEntityRecognitionSkill.cs

Initializes a new instance of the NamedEntityRecognitionSkill class.

public NamedEntityRecognitionSkill (System.Collections.Generic.IList<Microsoft.Azure.Search.Models.InputFieldMappingEntry> inputs, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.OutputFieldMappingEntry> outputs, string description = default, string context = default, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.NamedEntityCategory> categories = default, Microsoft.Azure.Search.Models.NamedEntityRecognitionSkillLanguage defaultLanguageCode = default, double? minimumPrecision = default);
new Microsoft.Azure.Search.Models.NamedEntityRecognitionSkill : System.Collections.Generic.IList<Microsoft.Azure.Search.Models.InputFieldMappingEntry> * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.OutputFieldMappingEntry> * string * string * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.NamedEntityCategory> * Microsoft.Azure.Search.Models.NamedEntityRecognitionSkillLanguage * Nullable<double> -> Microsoft.Azure.Search.Models.NamedEntityRecognitionSkill
Public Sub New (inputs As IList(Of InputFieldMappingEntry), outputs As IList(Of OutputFieldMappingEntry), Optional description As String = Nothing, Optional context As String = Nothing, Optional categories As IList(Of NamedEntityCategory) = Nothing, Optional defaultLanguageCode As NamedEntityRecognitionSkillLanguage = Nothing, Optional minimumPrecision As Nullable(Of Double) = Nothing)

Parameters

inputs
IList<InputFieldMappingEntry>

Inputs of the skills could be a column in the source data set, or the output of an upstream skill.

outputs
IList<OutputFieldMappingEntry>

The output of a skill is either a field in a search index, or a value that can be consumed as an input by another skill.

description
String

The description of the skill which describes the inputs, outputs, and usage of the skill.

context
String

Represents the level at which operations take place, such as the document root or document content (for example, /document or /document/content).

categories
IList<NamedEntityCategory>

A list of named entity categories.

defaultLanguageCode
NamedEntityRecognitionSkillLanguage

A value indicating which language code to use. Default is en.

minimumPrecision
Nullable<Double>

A value between 0 and 1 to indicate the confidence of the results.

Applies to