Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1TrainProcessorVersionRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/documentai_v1/classes.rb,
lib/google/apis/documentai_v1/representations.rb,
lib/google/apis/documentai_v1/representations.rb

Overview

Request message for the TrainProcessorVersion method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1TrainProcessorVersionRequest

Returns a new instance of GoogleCloudDocumentaiV1TrainProcessorVersionRequest.



5995
5996
5997
# File 'lib/google/apis/documentai_v1/classes.rb', line 5995

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#base_processor_versionString

Optional. The processor version to use as a base for training. This processor version must be a child of parent. Format: projects/project/locations/ location/processors/processor/processorVersions/processorVersion`. Corresponds to the JSON propertybaseProcessorVersion`

Returns:

  • (String)


5964
5965
5966
# File 'lib/google/apis/documentai_v1/classes.rb', line 5964

def base_processor_version
  @base_processor_version
end

#custom_document_extraction_optionsGoogle::Apis::DocumentaiV1::GoogleCloudDocumentaiV1TrainProcessorVersionRequestCustomDocumentExtractionOptions

Options to control the training of the Custom Document Extraction (CDE) Processor. Corresponds to the JSON property customDocumentExtractionOptions



5970
5971
5972
# File 'lib/google/apis/documentai_v1/classes.rb', line 5970

def custom_document_extraction_options
  @custom_document_extraction_options
end

#document_schemaGoogle::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchema

The schema defines the output of the processed document by a processor. Corresponds to the JSON property documentSchema



5975
5976
5977
# File 'lib/google/apis/documentai_v1/classes.rb', line 5975

def document_schema
  @document_schema
end

#foundation_model_tuning_optionsGoogle::Apis::DocumentaiV1::GoogleCloudDocumentaiV1TrainProcessorVersionRequestFoundationModelTuningOptions

Options to control foundation model tuning of the processor. Corresponds to the JSON property foundationModelTuningOptions



5980
5981
5982
# File 'lib/google/apis/documentai_v1/classes.rb', line 5980

def foundation_model_tuning_options
  @foundation_model_tuning_options
end

#input_dataGoogle::Apis::DocumentaiV1::GoogleCloudDocumentaiV1TrainProcessorVersionRequestInputData

The input data used to train a new ProcessorVersion. Corresponds to the JSON property inputData



5985
5986
5987
# File 'lib/google/apis/documentai_v1/classes.rb', line 5985

def input_data
  @input_data
end

#processor_versionGoogle::Apis::DocumentaiV1::GoogleCloudDocumentaiV1ProcessorVersion

A processor version is an implementation of a processor. Each processor can have multiple versions, pretrained by Google internally or uptrained by the customer. A processor can only have one default version at a time. Its document-processing behavior is defined by that version. Corresponds to the JSON property processorVersion



5993
5994
5995
# File 'lib/google/apis/documentai_v1/classes.rb', line 5993

def processor_version
  @processor_version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6000
6001
6002
6003
6004
6005
6006
6007
# File 'lib/google/apis/documentai_v1/classes.rb', line 6000

def update!(**args)
  @base_processor_version = args[:base_processor_version] if args.key?(:base_processor_version)
  @custom_document_extraction_options = args[:custom_document_extraction_options] if args.key?(:custom_document_extraction_options)
  @document_schema = args[:document_schema] if args.key?(:document_schema)
  @foundation_model_tuning_options = args[:foundation_model_tuning_options] if args.key?(:foundation_model_tuning_options)
  @input_data = args[:input_data] if args.key?(:input_data)
  @processor_version = args[:processor_version] if args.key?(:processor_version)
end