Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(components): Upload the tuned adapter to Model Registry instead of model checkpoint from preview.llm.rlhf_pipeline #10323

Merged
merged 1 commit into from Dec 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions components/google-cloud/RELEASE.md
@@ -1,6 +1,7 @@
## Upcoming release
* Use `large_model_reference` for `model_reference_name` when uploading models from `preview.llm.rlhf_pipeline` instead of hardcoding value as `text-bison@001`.
* Disable caching when resolving model display names for RLHF-tuned models so a unique name is generated on each `preview.llm.rlhf_pipeline` run.
* Upload the tuned adapter to Model Registry instead of model checkpoint from `preview.llm.rlhf_pipeline`.

## Release 2.8.0
* Release AutoSxS pipeline to preview.
Expand Down
Expand Up @@ -128,7 +128,7 @@ def rlhf_pipeline(
)

llm_model_handler = deployment_graph.pipeline(
output_adapter_path=rl_model_pipeline.outputs['output_model_path'],
output_adapter_path=rl_model_pipeline.outputs['output_adapter_path'],
large_model_reference=large_model_reference,
model_display_name=model_display_name,
deploy_model=deploy_model,
Expand Down