Interface VeoHyperParameters

Hyperparameters for Veo. This data type is not supported in Gemini API.

interface VeoHyperParameters {
    adapterSize?: AdapterSize;
    epochCount?: string;
    learningRateMultiplier?: number;
    tuningSpeed?: TuningSpeed;
    tuningTask?: TuningTask;
    veoDataMixtureRatio?: number;
}

Properties

adapterSize?: AdapterSize

Optional. The adapter size for LoRA tuning.

epochCount?: string

Optional. Number of complete passes the model makes over the entire training dataset during training.

learningRateMultiplier?: number

Optional. Multiplier for adjusting the default learning rate.

tuningSpeed?: TuningSpeed

The speed of the tuning job. Only supported for Veo 3.0 models.

tuningTask?: TuningTask

The tuning task for Veo.

veoDataMixtureRatio?: number

Optional. The ratio of Google internal dataset to use in the training mixture, in range of [0, 1). If 0.2, it means 20% of Google internal dataset and 80% of user dataset will be used for training. If not set, the default value is 0.1.