Class: Aws::Bedrock::Types::RFTConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#grader_configTypes::GraderConfig

Configuration for the grader that evaluates model responses and provides reward signals during RFT training.

Returns:



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_parametersTypes::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