-
Notifications
You must be signed in to change notification settings - Fork 450
feat: Added create_training_pipeline_custom_job_sample and create_training_pipeline_custom_training_managed_dataset_sample and fixed create_training_pipeline_image_classification_sample #343
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
Merged
ivanmkc
merged 10 commits into
googleapis:master
from
ivanmkc:imkc--mbsdk-milestone2-samples
Apr 27, 2021
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
c2caaa6
Merge pull request #339 from sasha-gitg/dev
sasha-gitg 359b6e9
Added create_and_import_dataset_tabular_gcs_sample.py
ivanmkc 0ca06d5
Added create_and_import_dataset_tabular_bigquery_sample.py
ivanmkc 94fd07b
Added create_training_pipeline_custom_job_sample.py and tweaked other…
ivanmkc 68eff56
Added create_training_pipeline_custom_training_managed_dataset_sample…
ivanmkc cca3652
Fixed args
ivanmkc 75505d1
Deleted duplicated samples
ivanmkc fec3e6c
Added more args to samples
ivanmkc f2b0a0b
Ran black
ivanmkc 0c06fdd
Ran linter
ivanmkc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
69 changes: 69 additions & 0 deletions
69
samples/model-builder/create_training_pipeline_custom_job_sample.py
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,69 @@ | ||
| # 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 typing import List, Optional, Union | ||
|
|
||
| from google.cloud import aiplatform | ||
|
|
||
|
|
||
| # [START aiplatform_sdk_create_training_pipeline_custom_job_sample] | ||
| def create_training_pipeline_custom_job_sample( | ||
| project: str, | ||
| location: str, | ||
| display_name: str, | ||
| script_path: 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 = 0, | ||
| machine_type: str = "n1-standard-4", | ||
| accelerator_type: str = "ACCELERATOR_TYPE_UNSPECIFIED", | ||
| accelerator_count: int = 0, | ||
| training_fraction_split: float = 0.8, | ||
|
sasha-gitg marked this conversation as resolved.
|
||
| validation_fraction_split: float = 0.1, | ||
| test_fraction_split: float = 0.1, | ||
| sync: bool = True, | ||
| ): | ||
| aiplatform.init(project=project, location=location) | ||
|
|
||
| job = aiplatform.CustomTrainingJob( | ||
| display_name=display_name, | ||
| script_path=script_path, | ||
| 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_job_sample] | ||
62 changes: 62 additions & 0 deletions
62
samples/model-builder/create_training_pipeline_custom_job_test.py
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| # 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_job_sample | ||
| import test_constants as constants | ||
|
|
||
|
|
||
| def test_create_training_pipeline_custom_job_sample( | ||
| mock_sdk_init, mock_init_custom_training_job, mock_run_custom_training_job, | ||
| ): | ||
|
|
||
| create_training_pipeline_custom_job_sample.create_training_pipeline_custom_job_sample( | ||
| project=constants.PROJECT, | ||
| location=constants.LOCATION, | ||
| display_name=constants.DISPLAY_NAME, | ||
| args=constants.ARGS, | ||
| script_path=constants.SCRIPT_PATH, | ||
| container_uri=constants.CONTAINER_URI, | ||
| 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 | ||
| ) | ||
| mock_init_custom_training_job.assert_called_once_with( | ||
| display_name=constants.DISPLAY_NAME, | ||
| script_path=constants.SCRIPT_PATH, | ||
| container_uri=constants.CONTAINER_URI, | ||
| model_serving_container_image_uri=constants.CONTAINER_URI, | ||
| ) | ||
| mock_run_custom_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, | ||
| ) |
73 changes: 73 additions & 0 deletions
73
samples/model-builder/create_training_pipeline_custom_training_managed_dataset_sample.py
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| # 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 typing import List, Optional, Union | ||
|
|
||
| from google.cloud import aiplatform | ||
|
|
||
|
|
||
| # [START aiplatform_sdk_create_training_pipeline_custom_job_sample] | ||
| def create_training_pipeline_custom_training_managed_dataset_sample( | ||
| project: str, | ||
| location: str, | ||
| display_name: str, | ||
| script_path: str, | ||
| container_uri: str, | ||
| model_serving_container_image_uri: str, | ||
| dataset_id: int, | ||
| model_display_name: Optional[str] = None, | ||
| args: Optional[List[Union[str, float, int]]] = None, | ||
| replica_count: int = 0, | ||
| 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) | ||
|
|
||
| job = aiplatform.CustomTrainingJob( | ||
| display_name=display_name, | ||
| script_path=script_path, | ||
| container_uri=container_uri, | ||
| model_serving_container_image_uri=model_serving_container_image_uri, | ||
| ) | ||
|
|
||
| my_image_ds = aiplatform.ImageDataset(dataset_id) | ||
|
|
||
| model = job.run( | ||
| dataset=my_image_ds, | ||
| 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_job_sample] |
70 changes: 70 additions & 0 deletions
70
samples/model-builder/create_training_pipeline_custom_training_managed_dataset_test.py
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,70 @@ | ||
| # 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_training_managed_dataset_sample | ||
| import test_constants as constants | ||
|
|
||
|
|
||
| def test_create_training_pipeline_custom_job_sample( | ||
| mock_sdk_init, | ||
| mock_image_dataset, | ||
| mock_init_custom_training_job, | ||
| mock_run_custom_training_job, | ||
| mock_get_image_dataset, | ||
| ): | ||
|
|
||
| create_training_pipeline_custom_training_managed_dataset_sample.create_training_pipeline_custom_training_managed_dataset_sample( | ||
| project=constants.PROJECT, | ||
| location=constants.LOCATION, | ||
| display_name=constants.DISPLAY_NAME, | ||
| args=constants.ARGS, | ||
| script_path=constants.SCRIPT_PATH, | ||
| container_uri=constants.CONTAINER_URI, | ||
| model_serving_container_image_uri=constants.CONTAINER_URI, | ||
| dataset_id=constants.RESOURCE_ID, | ||
| 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_get_image_dataset.assert_called_once_with(constants.RESOURCE_ID) | ||
|
|
||
| mock_sdk_init.assert_called_once_with( | ||
| project=constants.PROJECT, location=constants.LOCATION | ||
| ) | ||
| mock_init_custom_training_job.assert_called_once_with( | ||
| display_name=constants.DISPLAY_NAME, | ||
| script_path=constants.SCRIPT_PATH, | ||
| container_uri=constants.CONTAINER_URI, | ||
| model_serving_container_image_uri=constants.CONTAINER_URI, | ||
| ) | ||
| mock_run_custom_training_job.assert_called_once_with( | ||
| dataset=mock_image_dataset, | ||
| model_display_name=constants.DISPLAY_NAME_2, | ||
| args=constants.ARGS, | ||
| 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, | ||
| sync=True, | ||
| ) |
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
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.