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

FormTrainingClient.StartCreateComposedModel Method

Definition

Creates a composed model from a collection of existing models trained with labels.

public virtual Azure.AI.FormRecognizer.Training.CreateComposedModelOperation StartCreateComposedModel(System.Collections.Generic.IEnumerable<string> modelIds, string modelName = default, System.Threading.CancellationToken cancellationToken = default);
abstract member StartCreateComposedModel : seq<string> * string * System.Threading.CancellationToken -> Azure.AI.FormRecognizer.Training.CreateComposedModelOperation
override this.StartCreateComposedModel : seq<string> * string * System.Threading.CancellationToken -> Azure.AI.FormRecognizer.Training.CreateComposedModelOperation
Public Overridable Function StartCreateComposedModel (modelIds As IEnumerable(Of String), Optional modelName As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As CreateComposedModelOperation

Parameters

modelIds
IEnumerable<String>

List of model ids to use in the composed model.

modelName
String

An optional, user-defined name to associate with the model.

cancellationToken
CancellationToken

A CancellationToken controlling the request lifetime.

Returns

A CreateComposedModelOperation to wait on this long-running operation. Its Value upon successful completion will contain meta-data about the composed model.

Remarks

Method is only available for V2_1 and newer.

Applies to