Partager via


AzureMachineLearningSkill Constructeurs

Définition

Surcharges

AzureMachineLearningSkill(IEnumerable<InputFieldMappingEntry>, IEnumerable<OutputFieldMappingEntry>, ResourceIdentifier, Nullable<AzureLocation>)

Initialise une nouvelle instance de la classe AzureMachineLearningSkill.

AzureMachineLearningSkill(IEnumerable<InputFieldMappingEntry>, IEnumerable<OutputFieldMappingEntry>, Uri, String)

Initialise une nouvelle instance de la classe AzureMachineLearningSkill.

AzureMachineLearningSkill(IEnumerable<InputFieldMappingEntry>, IEnumerable<OutputFieldMappingEntry>, ResourceIdentifier, Nullable<AzureLocation>)

Source:
AzureMachineLearningSkill.cs

Initialise une nouvelle instance de la classe AzureMachineLearningSkill.

public AzureMachineLearningSkill (System.Collections.Generic.IEnumerable<Azure.Search.Documents.Indexes.Models.InputFieldMappingEntry> inputs, System.Collections.Generic.IEnumerable<Azure.Search.Documents.Indexes.Models.OutputFieldMappingEntry> outputs, Azure.Core.ResourceIdentifier resourceId, Azure.Core.AzureLocation? location = default);
new Azure.Search.Documents.Indexes.Models.AzureMachineLearningSkill : seq<Azure.Search.Documents.Indexes.Models.InputFieldMappingEntry> * seq<Azure.Search.Documents.Indexes.Models.OutputFieldMappingEntry> * Azure.Core.ResourceIdentifier * Nullable<Azure.Core.AzureLocation> -> Azure.Search.Documents.Indexes.Models.AzureMachineLearningSkill
Public Sub New (inputs As IEnumerable(Of InputFieldMappingEntry), outputs As IEnumerable(Of OutputFieldMappingEntry), resourceId As ResourceIdentifier, Optional location As Nullable(Of AzureLocation) = Nothing)

Paramètres

inputs
IEnumerable<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
IEnumerable<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.

resourceId
ResourceIdentifier

ID de ressource Azure Resource Manager du service AML. Il doit être au format subscriptions/{guid}/resourceGroups/{resource-group-name}/Microsoft.MachineLearningServices/workspaces/{workspace-name}/services/{service_name}.

location
Nullable<AzureLocation>

Région dans laquelle le service AML est déployé.

S’applique à

AzureMachineLearningSkill(IEnumerable<InputFieldMappingEntry>, IEnumerable<OutputFieldMappingEntry>, Uri, String)

Source:
AzureMachineLearningSkill.cs

Initialise une nouvelle instance de la classe AzureMachineLearningSkill.

public AzureMachineLearningSkill (System.Collections.Generic.IEnumerable<Azure.Search.Documents.Indexes.Models.InputFieldMappingEntry> inputs, System.Collections.Generic.IEnumerable<Azure.Search.Documents.Indexes.Models.OutputFieldMappingEntry> outputs, Uri scoringUri, string authenticationKey = default);
new Azure.Search.Documents.Indexes.Models.AzureMachineLearningSkill : seq<Azure.Search.Documents.Indexes.Models.InputFieldMappingEntry> * seq<Azure.Search.Documents.Indexes.Models.OutputFieldMappingEntry> * Uri * string -> Azure.Search.Documents.Indexes.Models.AzureMachineLearningSkill
Public Sub New (inputs As IEnumerable(Of InputFieldMappingEntry), outputs As IEnumerable(Of OutputFieldMappingEntry), scoringUri As Uri, Optional authenticationKey As String = Nothing)

Paramètres

inputs
IEnumerable<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
IEnumerable<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.

scoringUri
Uri

URI de scoring du service AML auquel la charge utile JSON sera envoyée. Seul le schéma d’URI https est autorisé.

authenticationKey
String

Clé du service AML.

S’applique à