TrainingJobServerlessJobConfig constructor

const TrainingJobServerlessJobConfig({
  1. Input<bool?>? acceptEula,
  2. required Input<String> baseModelArn,
  3. Input<String?>? customizationTechnique,
  4. Input<String?>? evaluationType,
  5. Input<String?>? evaluatorArn,
  6. required Input<String> jobType,
  7. Input<String?>? peft,
})

Creates a new TrainingJobServerlessJobConfig. acceptEula Whether to accept the model EULA. baseModelArn ARN of the base foundation model from the SageMaker AI Public Hub. customizationTechnique Customization technique to apply. Valid values: FINE_TUNING, DOMAIN_ADAPTION. evaluationType Evaluation type. Valid values: AUTOMATIC, HUMAN, NONE. evaluatorArn ARN of the evaluator. jobType Serverless job type. Valid values: FINE_TUNING, EVALUATION, DISTILLATION. peft Parameter-Efficient Fine-Tuning (PEFT) method. Valid values: LORA.

Implementation

const TrainingJobServerlessJobConfig({
  this.acceptEula,
  required this.baseModelArn,
  this.customizationTechnique,
  this.evaluationType,
  this.evaluatorArn,
  required this.jobType,
  this.peft,
});