chore(main): release 1.28.1#2358
Merged
Merged
Conversation
887bf74 to
2ea151c
Compare
2ea151c to
9ccbf08
Compare
9ccbf08 to
515f24e
Compare
515f24e to
b99c4f8
Compare
b99c4f8 to
95ff264
Compare
sararob
approved these changes
Jul 19, 2023
Contributor
Author
|
🤖 Release is at https://github.com/googleapis/python-aiplatform/releases/tag/v1.28.1 🌻 |
|
Triggered job: cloud-devrel/client-libraries/python/googleapis/python-aiplatform/release/release (2023-07-19T16:28:35.388Z) To trigger again, remove the autorelease: triggered label (in a few minutes). |
|
The release build has started, the log can be viewed here. 🌻 |
|
🥚 You hatched a release! The release build finished successfully! 💜 |
copybara-service Bot
pushed a commit
that referenced
this pull request
Jul 20, 2023
Previously, `tune_model` blocked the execution until the tuning is complete, then modified the model in-place. With this change, `tune_model` starts an asynchronous job and returns a job object. You can now do other work while the model is being tuned. You can now perform multiple tunings in parallel.being tuned. Breaking change: The model is no longer updated in-place, so Usage: ``` tuning_job = model.tune_model(...) tuned_model = tuning_job.result ``` FUTURE_COPYBARA_INTEGRATE_REVIEW=#2358 from googleapis:release-please--branches--main d86690b PiperOrigin-RevId: 549754111
This was referenced Jul 20, 2023
copybara-service Bot
pushed a commit
that referenced
this pull request
Jul 21, 2023
Model garden models can have various launch stages: GA, public review, private preview. Previously, the `ModelGardenModel` base class required a model interface class to be marked as preview to be able to use preview models. This resulted in maintenance issues and unnecessary proliferations of classes, because each class had to be duplicated up to 3 times to be able to accommodate models in different launch stages. For example, some people with a private preview model had wither change their model launch stage or create a special private preview version of the model interface class just to work around the loading restrictions. With this change, the model interface classes no longer reject preview models. The breaking change guarantees now apply separately to the model interface classes and models. A preview class can change when going to GA. A preview model can change when going to GA. FUTURE_COPYBARA_INTEGRATE_REVIEW=#2358 from googleapis:release-please--branches--main d86690b PiperOrigin-RevId: 550065259
copybara-service Bot
pushed a commit
that referenced
this pull request
Jul 22, 2023
Model interface classes support different models that might have different defaults for their parameters. SDK should not hardcode these parameters by default, letting the user to either use the model's defaults or explicitly override them. There was a recent similar case where the tuning parameter defaults were different for different tuning methods. FUTURE_COPYBARA_INTEGRATE_REVIEW=#2358 from googleapis:release-please--branches--main d86690b PiperOrigin-RevId: 550113719
copybara-service Bot
pushed a commit
that referenced
this pull request
Jul 22, 2023
Model interface classes support different models that might have different defaults for their parameters. SDK should not hardcode these parameters by default, letting the user to either use the model's defaults or explicitly override them. There was a recent similar case where the tuning parameter defaults were different for different tuning methods. FUTURE_COPYBARA_INTEGRATE_REVIEW=#2358 from googleapis:release-please--branches--main d86690b PiperOrigin-RevId: 550113719
pabloem
pushed a commit
to pabloem/python-aiplatform
that referenced
this pull request
Dec 30, 2023
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 I have created a release beep boop
1.28.1 (2023-07-18)
Features
Bug Fixes
Documentation
Miscellaneous Chores
This PR was generated with Release Please. See documentation.