Skip to content

Commit 6e6d005

Browse files
vertex-sdk-botcopybara-github
authored andcommitted
chore: LLM - Changed the model distillation pipeline URI
PiperOrigin-RevId: 592708955
1 parent ab21feb commit 6e6d005

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/unit/aiplatform/test_language_models.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -994,7 +994,7 @@ def reverse_string_2(s):""",
994994
)
995995

996996
_URL_DATA = {
997-
"https://us-kfp.pkg.dev/ml-pipeline/research/distillation/v1.0.0": _TEST_DISTILLATION_PIPELINE_SPEC_JSON,
997+
"https://us-kfp.pkg.dev/ml-pipeline/distillation/distillation/v1.0.0": _TEST_DISTILLATION_PIPELINE_SPEC_JSON,
998998
}
999999

10001000

@@ -4395,7 +4395,7 @@ def test_model_evaluation_text_classification_base_model_only_summary_metrics(
43954395
)
43964396
@pytest.mark.parametrize(
43974397
"mock_urllib_request_urlopen",
4398-
["https://us-kfp.pkg.dev/ml-pipeline/research/distillation/v1.0.0"],
4398+
["https://us-kfp.pkg.dev/ml-pipeline/distillation/distillation/v1.0.0"],
43994399
indirect=True,
44004400
)
44014401
def test_text_generation_model_distill_from(

vertexai/language_models/_distillation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class DistillationMixin:
1010
_DISTILLATION_PIPELINE_URI = (
11-
"https://us-kfp.pkg.dev/ml-pipeline/research/distillation/v1.0.0"
11+
"https://us-kfp.pkg.dev/ml-pipeline/distillation/distillation/v1.0.0"
1212
)
1313

1414
def distill_from(

0 commit comments

Comments
 (0)