Class: Aws::Rekognition::Types::EvaluationResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::EvaluationResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
The evaluation results for the training of a model.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#f1_score ⇒ Float
The F1 score for the evaluation of all labels.
-
#summary ⇒ Types::Summary
The S3 bucket that contains the training summary.
Instance Attribute Details
#f1_score ⇒ Float
The F1 score for the evaluation of all labels. The F1 score metric evaluates the overall precision and recall performance of the model as a single value. A higher value indicates better precision and recall performance. A lower score indicates that precision, recall, or both are performing poorly.
2786 2787 2788 2789 2790 2791 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2786 class EvaluationResult < Struct.new( :f1_score, :summary) SENSITIVE = [] include Aws::Structure end |
#summary ⇒ Types::Summary
The S3 bucket that contains the training summary.
2786 2787 2788 2789 2790 2791 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2786 class EvaluationResult < Struct.new( :f1_score, :summary) SENSITIVE = [] include Aws::Structure end |