Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EvaluationConfidenceLevelMetrics
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EvaluationConfidenceLevelMetrics
- 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
Evaluations metrics, at a specific confidence level.
Instance Attribute Summary collapse
-
#confidence_level ⇒ Float
The confidence level.
-
#metrics ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EvaluationMetrics
Evaluation metrics, either in aggregate or about a specific entity.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3EvaluationConfidenceLevelMetrics
constructor
A new instance of GoogleCloudDocumentaiV1beta3EvaluationConfidenceLevelMetrics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3EvaluationConfidenceLevelMetrics
Returns a new instance of GoogleCloudDocumentaiV1beta3EvaluationConfidenceLevelMetrics.
9822 9823 9824 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 9822 def initialize(**args) update!(**args) end |
Instance Attribute Details
#confidence_level ⇒ Float
The confidence level.
Corresponds to the JSON property confidenceLevel
9815 9816 9817 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 9815 def confidence_level @confidence_level end |
#metrics ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EvaluationMetrics
Evaluation metrics, either in aggregate or about a specific entity.
Corresponds to the JSON property metrics
9820 9821 9822 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 9820 def metrics @metrics end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9827 9828 9829 9830 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 9827 def update!(**args) @confidence_level = args[:confidence_level] if args.key?(:confidence_level) @metrics = args[:metrics] if args.key?(:metrics) end |