Interface VeoHyperParameters

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

interface VeoHyperParameters {
    epochCount?: string;
    learningRateMultiplier?: number;
    tuningTask?: TuningTask;
    veoDataMixtureRatio?: number;
}

Properties

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.

tuningTask?: TuningTask

Optional. The tuning task. Either I2V or T2V.

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.