次の方法で共有


TrainResult コンストラクター

定義

オーバーロード

TrainResult()

TrainResult クラスの新しいインスタンスを初期化します。

TrainResult(Guid, IList<FormDocumentReport>, IList<FormOperationError>)

TrainResult クラスの新しいインスタンスを初期化します。

TrainResult()

TrainResult クラスの新しいインスタンスを初期化します。

public TrainResult();
Public Sub New ()

適用対象

TrainResult(Guid, IList<FormDocumentReport>, IList<FormOperationError>)

TrainResult クラスの新しいインスタンスを初期化します。

public TrainResult(Guid modelId = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.FormRecognizer.Models.FormDocumentReport> trainingDocuments = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.FormRecognizer.Models.FormOperationError> errors = default);
new Microsoft.Azure.CognitiveServices.FormRecognizer.Models.TrainResult : Guid * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.FormRecognizer.Models.FormDocumentReport> * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.FormRecognizer.Models.FormOperationError> -> Microsoft.Azure.CognitiveServices.FormRecognizer.Models.TrainResult
Public Sub New (Optional modelId As Guid = Nothing, Optional trainingDocuments As IList(Of FormDocumentReport) = Nothing, Optional errors As IList(Of FormOperationError) = Nothing)

パラメーター

modelId
Guid

モデルの識別子。

trainingDocuments
IList<FormDocumentReport>

モデルのトレーニングに使用されるドキュメントの一覧と、それぞれが報告するトレーニング操作エラー。

errors
IList<FormOperationError>

トレーニング操作中に返されたエラー。

適用対象