Class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentLabel
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentLabel
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/documentai_v1beta2/classes.rb,
lib/google/apis/documentai_v1beta2/representations.rb,
lib/google/apis/documentai_v1beta2/representations.rb
Overview
Label attaches schema information and/or other metadata to segments within a Document. Multiple Labels on a single field can denote either different labels, different instances of the same label created at different times, or some combination of both.
Instance Attribute Summary collapse
-
#automl_model ⇒ String
Label is generated AutoML model.
-
#confidence ⇒ Float
Confidence score between 0 and 1 for label assignment.
-
#name ⇒ String
Name of the label.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta2DocumentLabel
constructor
A new instance of GoogleCloudDocumentaiV1beta2DocumentLabel.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta2DocumentLabel
Returns a new instance of GoogleCloudDocumentaiV1beta2DocumentLabel.
3198 3199 3200 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 3198 def initialize(**args) update!(**args) end |
Instance Attribute Details
#automl_model ⇒ String
Label is generated AutoML model. This field stores the full resource name of
the AutoML model. Format: projects/project-id/locations/location-id/
models/model-id`
Corresponds to the JSON propertyautomlModel`
3185 3186 3187 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 3185 def automl_model @automl_model end |
#confidence ⇒ Float
Confidence score between 0 and 1 for label assignment.
Corresponds to the JSON property confidence
3190 3191 3192 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 3190 def confidence @confidence end |
#name ⇒ String
Name of the label. When the label is generated from AutoML Text Classification
model, this field represents the name of the category.
Corresponds to the JSON property name
3196 3197 3198 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 3196 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3203 3204 3205 3206 3207 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 3203 def update!(**args) @automl_model = args[:automl_model] if args.key?(:automl_model) @confidence = args[:confidence] if args.key?(:confidence) @name = args[:name] if args.key?(:name) end |