你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

AzureMachineLearningSkill 构造函数

定义

重载

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

初始化 AzureMachineLearningSkill 类的新实例。

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

初始化 AzureMachineLearningSkill 类的新实例。

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

Source:
AzureMachineLearningSkill.cs

初始化 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)

参数

inputs
IEnumerable<InputFieldMappingEntry>

技能的输入可以是源数据集中的列,也可以是上游技能的输出。

outputs
IEnumerable<OutputFieldMappingEntry>

技能的输出要么是搜索索引中的字段,要么是另一个技能可以用作输入的值。

resourceId
ResourceIdentifier

Azure 资源管理器 AML 服务的资源 ID。 它的格式应如下所示:subscriptions/{guid}/resourceGroups/{resource-group-name}/Microsoft.MachineLearningServices/workspaces/{workspace-name}/services/{service_name}。

location
Nullable<AzureLocation>

AML 服务部署到的区域。

适用于

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

Source:
AzureMachineLearningSkill.cs

初始化 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)

参数

inputs
IEnumerable<InputFieldMappingEntry>

技能的输入可以是源数据集中的列,也可以是上游技能的输出。

outputs
IEnumerable<OutputFieldMappingEntry>

技能的输出要么是搜索索引中的字段,要么是另一个技能可以用作输入的值。

scoringUri
Uri

JSON 有效负载将发送到的 AML 服务的评分 URI。 仅支持 https URI 方案。

authenticationKey
String

AML 服务的密钥。

适用于