Class: Aws::Bedrock::Types::RFTConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::RFTConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrock/types.rb
Overview
Configuration settings for reinforcement fine-tuning (RFT), including grader configuration and training hyperparameters.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#grader_config ⇒ Types::GraderConfig
Configuration for the grader that evaluates model responses and provides reward signals during RFT training.
-
#hyper_parameters ⇒ Types::RFTHyperParameters
Hyperparameters that control the reinforcement fine-tuning training process, including learning rate, batch size, and epoch count.
Instance Attribute Details
#grader_config ⇒ Types::GraderConfig
Configuration for the grader that evaluates model responses and provides reward signals during RFT training.
11471 11472 11473 11474 11475 11476 |
# File 'lib/aws-sdk-bedrock/types.rb', line 11471 class RFTConfig < Struct.new( :grader_config, :hyper_parameters) SENSITIVE = [] include Aws::Structure end |
#hyper_parameters ⇒ Types::RFTHyperParameters
Hyperparameters that control the reinforcement fine-tuning training process, including learning rate, batch size, and epoch count.
11471 11472 11473 11474 11475 11476 |
# File 'lib/aws-sdk-bedrock/types.rb', line 11471 class RFTConfig < Struct.new( :grader_config, :hyper_parameters) SENSITIVE = [] include Aws::Structure end |