You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: LLM - Released TextGenerationModel tuning to GA
Changes from Preview:
* `tune_model()` no longer blocks while the model is being tuned.
* `tune_model()` no longer updates the model in-place once tuning has fnished. Instead, it returns a job that can be used to get the newly tuned model.
* `tune_model()` now returns a tuning job object. The `tuning_job.tuned_model` property can be used to get the tuned model, waiting for the tuning to finish if needed. (This is also working in Preview)
* The `learning_rate` parameter has been removed. Use `learning_rate_multiplier` instead.
* The default value for `train_steps` has changed from 1000 to the tuning pipeline default value (usually 300).
PiperOrigin-RevId: 558650122
0 commit comments