Class: Aws::Bedrock::Types::HumanEvaluationCustomMetric
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::HumanEvaluationCustomMetric
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrock/types.rb
Overview
In a model evaluation job that uses human workers you must define the name of the metric, and how you want that metric rated ‘ratingMethod`, and an optional description of the metric.
Constant Summary collapse
- SENSITIVE =
[:name, :description]
Instance Attribute Summary collapse
-
#description ⇒ String
An optional description of the metric.
-
#name ⇒ String
The name of the metric.
-
#rating_method ⇒ String
Choose how you want your human workers to evaluation your model.
Instance Attribute Details
#description ⇒ String
An optional description of the metric. Use this parameter to provide more details about the metric.
8601 8602 8603 8604 8605 8606 8607 |
# File 'lib/aws-sdk-bedrock/types.rb', line 8601 class HumanEvaluationCustomMetric < Struct.new( :name, :description, :rating_method) SENSITIVE = [:name, :description] include Aws::Structure end |
#name ⇒ String
The name of the metric. Your human evaluators will see this name in the evaluation UI.
8601 8602 8603 8604 8605 8606 8607 |
# File 'lib/aws-sdk-bedrock/types.rb', line 8601 class HumanEvaluationCustomMetric < Struct.new( :name, :description, :rating_method) SENSITIVE = [:name, :description] include Aws::Structure end |
#rating_method ⇒ String
Choose how you want your human workers to evaluation your model. Valid values for rating methods are ‘ThumbsUpDown`, `IndividualLikertScale`,`ComparisonLikertScale`, `ComparisonChoice`, and `ComparisonRank`
8601 8602 8603 8604 8605 8606 8607 |
# File 'lib/aws-sdk-bedrock/types.rb', line 8601 class HumanEvaluationCustomMetric < Struct.new( :name, :description, :rating_method) SENSITIVE = [:name, :description] include Aws::Structure end |