Class VeoHyperParameters

java.lang.Object
com.google.genai.JsonSerializable
com.google.genai.types.VeoHyperParameters

@InternalApi public abstract class VeoHyperParameters extends JsonSerializable
Hyperparameters for Veo. This data type is not supported in Gemini API.
  • Constructor Details

    • VeoHyperParameters

      public VeoHyperParameters()
  • Method Details

    • epochCount

      public abstract Optional<Long> epochCount()
      Optional. Number of complete passes the model makes over the entire training dataset during training.
    • learningRateMultiplier

      public abstract Optional<Double> learningRateMultiplier()
      Optional. Multiplier for adjusting the default learning rate.
    • tuningTask

      public abstract Optional<TuningTask> tuningTask()
      Optional. The tuning task. Either I2V or T2V.
    • builder

      public static VeoHyperParameters.Builder builder()
      Instantiates a builder for VeoHyperParameters.
    • toBuilder

      public abstract VeoHyperParameters.Builder toBuilder()
      Creates a builder with the same values as this instance.
    • fromJson

      public static VeoHyperParameters fromJson(String jsonString)
      Deserializes a JSON string to a VeoHyperParameters object.