Class: Aws::Bedrock::Types::RFTConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::RFTConfig
- Defined in:
- gems/aws-sdk-bedrock/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.
11447 11448 11449 11450 11451 11452 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 11447 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.
11447 11448 11449 11450 11451 11452 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 11447 class RFTConfig < Struct.new( :grader_config, :hyper_parameters) SENSITIVE = [] include Aws::Structure end |