Class: Aws::Bedrock::Types::LambdaGraderConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::LambdaGraderConfig
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
Configuration for using an AWS Lambda function to grade model responses during reinforcement fine-tuning training.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#lambda_arn ⇒ String
ARN of the AWS Lambda function that will evaluate model responses and return reward scores for RFT training.
Instance Attribute Details
#lambda_arn ⇒ String
ARN of the AWS Lambda function that will evaluate model responses and return reward scores for RFT training.
9074 9075 9076 9077 9078 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 9074 class LambdaGraderConfig < Struct.new( :lambda_arn) SENSITIVE = [] include Aws::Structure end |