Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequest
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/documentai_v1beta3/classes.rb,
lib/google/apis/documentai_v1beta3/representations.rb,
lib/google/apis/documentai_v1beta3/representations.rb
Overview
Request message for the TrainProcessorVersion method.
Instance Attribute Summary collapse
-
#base_processor_version ⇒ String
Optional.
-
#custom_document_extraction_options ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequestCustomDocumentExtractionOptions
Options to control the training of the Custom Document Extraction (CDE) Processor.
-
#document_schema ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentSchema
The schema defines the output of the processed document by a processor.
-
#foundation_model_tuning_options ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequestFoundationModelTuningOptions
Options to control foundation model tuning of the processor.
-
#input_data ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequestInputData
The input data used to train a new ProcessorVersion.
-
#processor_version ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3ProcessorVersion
A processor version is an implementation of a processor.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequest
constructor
A new instance of GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequest
Returns a new instance of GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequest.
7693 7694 7695 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7693 def initialize(**args) update!(**args) end |
Instance Attribute Details
#base_processor_version ⇒ String
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`
7662 7663 7664 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7662 def base_processor_version @base_processor_version end |
#custom_document_extraction_options ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequestCustomDocumentExtractionOptions
Options to control the training of the Custom Document Extraction (CDE)
Processor.
Corresponds to the JSON property customDocumentExtractionOptions
7668 7669 7670 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7668 def @custom_document_extraction_options end |
#document_schema ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentSchema
The schema defines the output of the processed document by a processor.
Corresponds to the JSON property documentSchema
7673 7674 7675 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7673 def document_schema @document_schema end |
#foundation_model_tuning_options ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequestFoundationModelTuningOptions
Options to control foundation model tuning of the processor.
Corresponds to the JSON property foundationModelTuningOptions
7678 7679 7680 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7678 def @foundation_model_tuning_options end |
#input_data ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequestInputData
The input data used to train a new ProcessorVersion.
Corresponds to the JSON property inputData
7683 7684 7685 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7683 def input_data @input_data end |
#processor_version ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3ProcessorVersion
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
7691 7692 7693 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7691 def processor_version @processor_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7698 7699 7700 7701 7702 7703 7704 7705 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7698 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 |