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

BuildDocumentModelOptions Constructors

Definition

Overloads

BuildDocumentModelOptions(String, DocumentBuildMode, BlobContentSource)

Source:
BuildDocumentModelOptions.cs

Initializes a new instance of BuildDocumentModelOptions.

public BuildDocumentModelOptions(string modelId, Azure.AI.DocumentIntelligence.DocumentBuildMode buildMode, Azure.AI.DocumentIntelligence.BlobContentSource blobSource);
new Azure.AI.DocumentIntelligence.BuildDocumentModelOptions : string * Azure.AI.DocumentIntelligence.DocumentBuildMode * Azure.AI.DocumentIntelligence.BlobContentSource -> Azure.AI.DocumentIntelligence.BuildDocumentModelOptions
Public Sub New (modelId As String, buildMode As DocumentBuildMode, blobSource As BlobContentSource)

Parameters

modelId
String

Unique document model name.

buildMode
DocumentBuildMode

Custom document model build mode.

blobSource
BlobContentSource

Azure Blob Storage location containing the training data.

Exceptions

modelId or blobSource is null.

Applies to

BuildDocumentModelOptions(String, DocumentBuildMode, BlobFileListContentSource)

Source:
BuildDocumentModelOptions.cs

Initializes a new instance of BuildDocumentModelOptions.

public BuildDocumentModelOptions(string modelId, Azure.AI.DocumentIntelligence.DocumentBuildMode buildMode, Azure.AI.DocumentIntelligence.BlobFileListContentSource blobFileListSource);
new Azure.AI.DocumentIntelligence.BuildDocumentModelOptions : string * Azure.AI.DocumentIntelligence.DocumentBuildMode * Azure.AI.DocumentIntelligence.BlobFileListContentSource -> Azure.AI.DocumentIntelligence.BuildDocumentModelOptions
Public Sub New (modelId As String, buildMode As DocumentBuildMode, blobFileListSource As BlobFileListContentSource)

Parameters

modelId
String

Unique document model name.

buildMode
DocumentBuildMode

Custom document model build mode.

blobFileListSource
BlobFileListContentSource

Azure Blob Storage file list specifying the training data.

Exceptions

modelId or blobFileListSource is null.

Applies to