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

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

Instance Attribute Details

#grader_configTypes::GraderConfig

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

Returns:



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