-
Notifications
You must be signed in to change notification settings - Fork 353
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added create_training_pipeline_custom_package_job_sample
- Loading branch information
Showing
4 changed files
with
170 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
71 changes: 71 additions & 0 deletions
71
samples/model-builder/create_training_pipeline_custom_package_job_sample.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,71 @@ | ||
# Copyright 2021 Google LLC | ||
# | ||
# Licensed 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 | ||
# | ||
# https://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. | ||
|
||
from google.cloud import aiplatform | ||
from typing import List, Optional, Union | ||
|
||
|
||
# [START aiplatform_sdk_create_training_pipeline_custom_package_job_sample] | ||
def create_training_pipeline_custom_package_job_sample( | ||
project: str, | ||
location: str, | ||
staging_bucket: str, | ||
display_name: str, | ||
python_package_gcs_uri: str, | ||
python_module_name: str, | ||
container_uri: str, | ||
model_serving_container_image_uri: str, | ||
model_display_name: Optional[str] = None, | ||
args: Optional[List[Union[str, float, int]]] = None, | ||
replica_count: int = 1, | ||
machine_type: str = "n1-standard-4", | ||
accelerator_type: str = "ACCELERATOR_TYPE_UNSPECIFIED", | ||
accelerator_count: int = 0, | ||
training_fraction_split: float = 0.8, | ||
validation_fraction_split: float = 0.1, | ||
test_fraction_split: float = 0.1, | ||
sync: bool = True, | ||
): | ||
aiplatform.init(project=project, location=location, staging_bucket=staging_bucket) | ||
|
||
job = aiplatform.CustomPythonPackageTrainingJob( | ||
display_name=display_name, | ||
python_package_gcs_uri=python_package_gcs_uri, | ||
python_module_name=python_module_name, | ||
container_uri=container_uri, | ||
model_serving_container_image_uri=model_serving_container_image_uri, | ||
) | ||
|
||
model = job.run( | ||
model_display_name=model_display_name, | ||
args=args, | ||
replica_count=replica_count, | ||
machine_type=machine_type, | ||
accelerator_type=accelerator_type, | ||
accelerator_count=accelerator_count, | ||
training_fraction_split=training_fraction_split, | ||
validation_fraction_split=validation_fraction_split, | ||
test_fraction_split=test_fraction_split, | ||
sync=sync, | ||
) | ||
|
||
model.wait() | ||
|
||
print(model.display_name) | ||
print(model.resource_name) | ||
print(model.uri) | ||
return model | ||
|
||
|
||
# [END aiplatform_sdk_create_training_pipeline_custom_package_job_sample] |
68 changes: 68 additions & 0 deletions
68
samples/model-builder/create_training_pipeline_custom_package_job_test.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 @@ | ||
# Copyright 2021 Google LLC | ||
# | ||
# Licensed 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 | ||
# | ||
# https://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. | ||
|
||
|
||
import create_training_pipeline_custom_package_job_sample | ||
import test_constants as constants | ||
|
||
|
||
def test_create_training_pipeline_custom_package_job_sample( | ||
mock_sdk_init, | ||
mock_init_custom_package_training_job, | ||
mock_run_custom_package_training_job, | ||
): | ||
|
||
create_training_pipeline_custom_package_job_sample.create_training_pipeline_custom_package_job_sample( | ||
project=constants.PROJECT, | ||
location=constants.LOCATION, | ||
staging_bucket=constants.STAGING_BUCKET, | ||
display_name=constants.DISPLAY_NAME, | ||
python_package_gcs_uri=constants.PYTHON_PACKAGE_GCS_URI, | ||
python_module_name=constants.PYTHON_MODULE_NAME, | ||
container_uri=constants.CONTAINER_URI, | ||
args=constants.ARGS, | ||
model_serving_container_image_uri=constants.CONTAINER_URI, | ||
model_display_name=constants.DISPLAY_NAME_2, | ||
replica_count=constants.REPLICA_COUNT, | ||
machine_type=constants.MACHINE_TYPE, | ||
accelerator_type=constants.ACCELERATOR_TYPE, | ||
accelerator_count=constants.ACCELERATOR_COUNT, | ||
training_fraction_split=constants.TRAINING_FRACTION_SPLIT, | ||
validation_fraction_split=constants.VALIDATION_FRACTION_SPLIT, | ||
test_fraction_split=constants.TEST_FRACTION_SPLIT, | ||
) | ||
|
||
mock_sdk_init.assert_called_once_with( | ||
project=constants.PROJECT, location=constants.LOCATION, staging_bucket=constants.STAGING_BUCKET | ||
) | ||
|
||
mock_init_custom_package_training_job.assert_called_once_with( | ||
display_name=constants.DISPLAY_NAME, | ||
python_package_gcs_uri=constants.PYTHON_PACKAGE_GCS_URI, | ||
python_module_name=constants.PYTHON_MODULE_NAME, | ||
container_uri=constants.CONTAINER_URI, | ||
model_serving_container_image_uri=constants.CONTAINER_URI, | ||
) | ||
mock_run_custom_package_training_job.assert_called_once_with( | ||
model_display_name=constants.DISPLAY_NAME_2, | ||
replica_count=constants.REPLICA_COUNT, | ||
machine_type=constants.MACHINE_TYPE, | ||
accelerator_type=constants.ACCELERATOR_TYPE, | ||
accelerator_count=constants.ACCELERATOR_COUNT, | ||
args=constants.ARGS, | ||
training_fraction_split=constants.TRAINING_FRACTION_SPLIT, | ||
validation_fraction_split=constants.VALIDATION_FRACTION_SPLIT, | ||
test_fraction_split=constants.TEST_FRACTION_SPLIT, | ||
sync=True, | ||
) |
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