class Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionMetadataDatasetValidation

The dataset validation information. This includes any and all errors with documents and the dataset.

Attributes

dataset_error_count[RW]

The total number of dataset errors. Corresponds to the JSON property `datasetErrorCount` @return [Fixnum]

dataset_errors[RW]

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. Corresponds to the JSON property `datasetErrors` @return [Array<Google::Apis::DocumentaiV1beta3::GoogleRpcStatus>]

document_error_count[RW]

The total number of document errors. Corresponds to the JSON property `documentErrorCount` @return [Fixnum]

document_errors[RW]

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. Corresponds to the JSON property `documentErrors` @return [Array<Google::Apis::DocumentaiV1beta3::GoogleRpcStatus>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/documentai_v1beta3/classes.rb, line 501
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/documentai_v1beta3/classes.rb, line 506
def update!(**args)
  @dataset_error_count = args[:dataset_error_count] if args.key?(:dataset_error_count)
  @dataset_errors = args[:dataset_errors] if args.key?(:dataset_errors)
  @document_error_count = args[:document_error_count] if args.key?(:document_error_count)
  @document_errors = args[:document_errors] if args.key?(:document_errors)
end