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

DocumentModelAdministrationClient.ComposeDocumentModel 方法

定义

从现有模型集合中编写模型。 通过组合生成的模型允许使用单个模型 ID 调用多个模型。 提交文档以使用其模型 ID 进行分析时,首先执行分类步骤以将其路由到正确的自定义模型。

public virtual Azure.AI.FormRecognizer.DocumentAnalysis.ComposeDocumentModelOperation ComposeDocumentModel (Azure.WaitUntil waitUntil, System.Collections.Generic.IEnumerable<string> componentModelIds, string modelId = default, string description = default, System.Collections.Generic.IDictionary<string,string> tags = default, System.Threading.CancellationToken cancellationToken = default);
abstract member ComposeDocumentModel : Azure.WaitUntil * seq<string> * string * string * System.Collections.Generic.IDictionary<string, string> * System.Threading.CancellationToken -> Azure.AI.FormRecognizer.DocumentAnalysis.ComposeDocumentModelOperation
override this.ComposeDocumentModel : Azure.WaitUntil * seq<string> * string * string * System.Collections.Generic.IDictionary<string, string> * System.Threading.CancellationToken -> Azure.AI.FormRecognizer.DocumentAnalysis.ComposeDocumentModelOperation
Public Overridable Function ComposeDocumentModel (waitUntil As WaitUntil, componentModelIds As IEnumerable(Of String), Optional modelId As String = Nothing, Optional description As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As ComposeDocumentModelOperation

参数

waitUntil
WaitUntil

Completed 如果方法应等待返回,直到服务上长时间运行的操作完成; Started 如果它应在启动操作后返回,则为 。

componentModelIds
IEnumerable<String>

在组合中使用的模型 ID 列表。

modelId
String

模型的唯一 ID。 如果未指定,则会为你创建一个模型 ID。

description
String

要添加到模型的可选说明。

tags
IDictionary<String,String>

与模型关联的用户定义的键值标记属性的列表。

cancellationToken
CancellationToken

控制 CancellationToken 请求生存期的 。

返回

等待 ComposeDocumentModelOperation 此长时间运行的操作的 。 成功完成后,其值将包含有关生成模型的元数据。

适用于