Interface PartnerModelTuningSpec

Tuning spec for Partner models.

interface PartnerModelTuningSpec {
    hyperParameters?: Record<string, unknown>;
    trainingDatasetUri?: string;
    validationDatasetUri?: string;
}

Properties

hyperParameters?: Record<string, unknown>

Hyperparameters for tuning. The accepted hyper_parameters and their valid range of values will differ depending on the base model.

trainingDatasetUri?: string

Required. Cloud Storage path to file containing training dataset for tuning. The dataset must be formatted as a JSONL file.

validationDatasetUri?: string

Optional. Cloud Storage path to file containing validation dataset for tuning. The dataset must be formatted as a JSONL file.