Module: AWSCDK::StepFunctionsTasks::CustomizationType

Defined in:
step_functions_tasks/customization_type.rb

Overview

The customization type.

Constant Summary collapse

FINE_TUNING =
Deprecated.
Note:

Default:

Fine-tuning.

Provide labeled data in order to train a model to improve performance on specific tasks.

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.CustomizationType", "FINE_TUNING")
CONTINUED_PRE_TRAINING =
Deprecated.
Note:

Default:

Continued pre-training.

Provide unlabeled data to pre-train a foundation model by familiarizing it with certain types of inputs.

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.CustomizationType", "CONTINUED_PRE_TRAINING")
DISTILLATION =
Deprecated.
Note:

Default:

Distillation.

With Model Distillation, you can generate synthetic responses from a large foundation model (teacher) and use that data to train a smaller model (student) for your specific use-case.

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.CustomizationType", "DISTILLATION")