Class: Aws::SageMaker::Types::ModelSpeculativeDecodingConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ModelSpeculativeDecodingConfig
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Settings for the model speculative decoding technique that's applied by a model optimization job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#technique ⇒ String
The speculative decoding technique to apply during model optimization.
-
#training_data_source ⇒ Types::ModelSpeculativeDecodingTrainingDataSource
The location of the training data to use for speculative decoding.
Instance Attribute Details
#technique ⇒ String
The speculative decoding technique to apply during model optimization.
38675 38676 38677 38678 38679 38680 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 38675 class ModelSpeculativeDecodingConfig < Struct.new( :technique, :training_data_source) SENSITIVE = [] include Aws::Structure end |
#training_data_source ⇒ Types::ModelSpeculativeDecodingTrainingDataSource
The location of the training data to use for speculative decoding. The data must be formatted as ShareGPT, OpenAI Completions or OpenAI Chat Completions. The input can also be unencrypted captured data from a SageMaker endpoint as long as the endpoint uses one of the above formats.
38675 38676 38677 38678 38679 38680 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 38675 class ModelSpeculativeDecodingConfig < Struct.new( :technique, :training_data_source) SENSITIVE = [] include Aws::Structure end |