Interface FullFineTuningSpec

Tuning Spec for Full Fine Tuning. This data type is not supported in Gemini API.

interface FullFineTuningSpec {
    hyperParameters?: SupervisedHyperParameters;
    trainingDatasetUri?: string;
    validationDatasetUri?: string;
}

Properties

hyperParameters?: SupervisedHyperParameters

Optional. Hyperparameters for Full Fine Tuning.

trainingDatasetUri?: string

Required. Training dataset used for tuning. The dataset can be specified as either a Cloud Storage path to a JSONL file or as the resource name of a Vertex Multimodal Dataset.

validationDatasetUri?: string

Optional. Validation dataset used for tuning. The dataset can be specified as either a Cloud Storage path to a JSONL file or as the resource name of a Vertex Multimodal Dataset.