FormTrainingClient.StartCreateComposedModel Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Azure SDK for .NET