forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Supervised Fine Tuning Train Operator, Hook, Tests, Docs (apache#…
…41807) * add supervised_fine_tuning * build fix * build,test fix * unit test build fix * xcom fix * refactor supervised tuning into generative_model module, PR feedback, tests * minor system test fix * update provider.yaml * doc fix * Update Vertex AI Documentation
- Loading branch information
Showing
8 changed files
with
293 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
68 changes: 68 additions & 0 deletions
68
tests/system/providers/google/cloud/vertex_ai/example_vertex_ai_generative_model_tuning.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
""" | ||
Example Airflow DAG for Google Vertex AI Generative Model Tuning Tasks. | ||
""" | ||
|
||
from __future__ import annotations | ||
|
||
import os | ||
from datetime import datetime | ||
|
||
from airflow.models.dag import DAG | ||
from airflow.providers.google.cloud.operators.vertex_ai.generative_model import ( | ||
SupervisedFineTuningTrainOperator, | ||
) | ||
|
||
PROJECT_ID = os.environ.get("SYSTEM_TESTS_GCP_PROJECT", "default") | ||
DAG_ID = "vertex_ai_generative_model_tuning_dag" | ||
REGION = "us-central1" | ||
SOURCE_MODEL = "gemini-1.0-pro-002" | ||
TRAIN_DATASET = "gs://cloud-samples-data/ai-platform/generative_ai/sft_train_data.jsonl" | ||
TUNED_MODEL_DISPLAY_NAME = "my_tuned_gemini_model" | ||
|
||
with DAG( | ||
dag_id=DAG_ID, | ||
description="Sample DAG with generative model tuning tasks.", | ||
schedule="@once", | ||
start_date=datetime(2024, 1, 1), | ||
catchup=False, | ||
tags=["example", "vertex_ai", "generative_model"], | ||
) as dag: | ||
# [START how_to_cloud_vertex_ai_supervised_fine_tuning_train_operator] | ||
sft_train_task = SupervisedFineTuningTrainOperator( | ||
task_id="sft_train_task", | ||
project_id=PROJECT_ID, | ||
location=REGION, | ||
source_model=SOURCE_MODEL, | ||
train_dataset=TRAIN_DATASET, | ||
tuned_model_display_name=TUNED_MODEL_DISPLAY_NAME, | ||
) | ||
# [END how_to_cloud_vertex_ai_supervised_fine_tuning_train_operator] | ||
|
||
from tests.system.utils.watcher import watcher | ||
|
||
# This test needs watcher in order to properly mark success/failure | ||
# when "tearDown" task with trigger rule is part of the DAG | ||
list(dag.tasks) >> watcher() | ||
|
||
from tests.system.utils import get_test_run # noqa: E402 | ||
|
||
# Needed to run the example DAG with pytest (see: tests/system/README.md#run_via_pytest) | ||
test_run = get_test_run(dag) |