Class: Aws::Bedrock::Types::EvaluationDataset
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Bedrock::Types::EvaluationDataset
 
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
Used to specify the name of a built-in prompt dataset and optionally, the Amazon S3 bucket where a custom prompt dataset is saved.
Constant Summary collapse
- SENSITIVE =
- [:name] 
Instance Attribute Summary collapse
- 
  
    
      #dataset_location  ⇒ Types::EvaluationDatasetLocation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    For custom prompt datasets, you must specify the location in Amazon S3 where the prompt dataset is saved. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Used to specify supported built-in prompt datasets. 
Instance Attribute Details
#dataset_location ⇒ Types::EvaluationDatasetLocation
For custom prompt datasets, you must specify the location in Amazon S3 where the prompt dataset is saved.
| 4253 4254 4255 4256 4257 4258 | # File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4253 class EvaluationDataset < Struct.new( :name, :dataset_location) SENSITIVE = [:name] include Aws::Structure end | 
#name ⇒ String
Used to specify supported built-in prompt datasets. Valid values are
Builtin.Bold, Builtin.BoolQ, Builtin.NaturalQuestions,
Builtin.Gigaword, Builtin.RealToxicityPrompts,
Builtin.TriviaQA, Builtin.T-Rex,
Builtin.WomensEcommerceClothingReviews and Builtin.Wikitext2.
| 4253 4254 4255 4256 4257 4258 | # File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4253 class EvaluationDataset < Struct.new( :name, :dataset_location) SENSITIVE = [:name] include Aws::Structure end |