Googly. DocumentAI. Model. GoogleCloudDocumentaiV1TrainProcessorVersionMetadataDatasetValidation
(googly_document_ai v0.1.0)
Copy Markdown
View Source
The dataset validation information. This includes any and all errors with documents and the dataset.
Attributes
-
dataset_error_count(type:integer()) - The total number of dataset errors. -
dataset_errors(type:list(Googly.DocumentAI.Model.GoogleRpcStatus.t())) - Error information for the dataset as a whole. A maximum of 10 dataset errors will be returned. A single dataset error is terminal for training. -
document_error_count(type:integer()) - The total number of document errors. -
document_errors(type:list(Googly.DocumentAI.Model.GoogleRpcStatus.t())) - Error information pertaining to specific documents. A maximum of 10 document errors will be returned. Any document with errors will not be used throughout training.
Summary
Types
@type t() :: %Googly.DocumentAI.Model.GoogleCloudDocumentaiV1TrainProcessorVersionMetadataDatasetValidation{ dataset_error_count: integer() | nil, dataset_errors: [Googly.DocumentAI.Model.GoogleRpcStatus.t()] | nil, document_error_count: integer() | nil, document_errors: [Googly.DocumentAI.Model.GoogleRpcStatus.t()] | nil }