Compartilhar via


BuildDocumentModelOptions Constructors

Definition

Overloads

BuildDocumentModelOptions(String, DocumentBuildMode, BlobContentSource)

Initializes a new instance of BuildDocumentModelOptions.

BuildDocumentModelOptions(String, DocumentBuildMode, BlobFileListContentSource)

Initializes a new instance of BuildDocumentModelOptions.

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