{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": { "id": "ur8xi4C7S06n" }, "outputs": [], "source": [ "# Copyright 2021 Google LLC\n", "#\n", "# Licensed under the Apache License, Version 2.0 (the \"License\");\n", "# you may not use this file except in compliance with the License.\n", "# You may obtain a copy of the License at\n", "#\n", "# https://www.apache.org/licenses/LICENSE-2.0\n", "#\n", "# Unless required by applicable law or agreed to in writing, software\n", "# distributed under the License is distributed on an \"AS IS\" BASIS,\n", "# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n", "# See the License for the specific language governing permissions and\n", "# limitations under the License." ] }, { "cell_type": "markdown", "metadata": { "id": "JAPoU8Sm5E6e" }, "source": [ "\n", "\n", " \n", " \n", "
\n", " \n", " \"Colab Run in Colab\n", " \n", " \n", " \n", " \"GitHub\n", " View on GitHub\n", " \n", "
" ] }, { "cell_type": "markdown", "metadata": { "id": "tvgnzT1CKxrO" }, "source": [ "## Overview\n", "\n", "This notebook demonstrates how to run a hyperparameter tuning job with Vertex Training to discover optimal hyperparameter values for an ML model. To speed up the training process, `MirroredStrategy` from the `tf.distribute` module is used to distribute training across multiple GPUs on a single machine.\n", "\n", "### Dataset\n", "\n", "The dataset used for this tutorial is the [horses or humans dataset](https://www.tensorflow.org/datasets/catalog/horses_or_humans) from [TensorFlow Datasets](https://www.tensorflow.org/datasets). The trained model predicts if an image is of a horse or a human.\n", "\n", "### Objective\n", "\n", "In this notebook, you create a custom-trained model from a Python script in a Docker container. You learn how to modify training application code for hyperparameter tuning and submit a Vertex Training hyperparameter tuning job with the Python SDK.\n", "\n", "The steps performed include:\n", "\n", "* Create a Vertex AI custom job for training a model.\n", "* Launch hyperparameter tuning job with the Python SDK.\n", "* Cleanup resources.\n", "\n", "\n", "### Costs \n", "\n", "This tutorial uses billable components of Google Cloud:\n", "\n", "* Vertex AI\n", "* Cloud Storage\n", "\n", "\n", "Learn about [Vertex AI\n", "pricing](https://cloud.google.com/vertex-ai/pricing) and [Cloud Storage\n", "pricing](https://cloud.google.com/storage/pricing), and use the [Pricing\n", "Calculator](https://cloud.google.com/products/calculator/)\n", "to generate a cost estimate based on your projected usage." ] }, { "cell_type": "markdown", "metadata": { "id": "ze4-nDLfK4pw" }, "source": [ "### Set up your local development environment\n", "\n", "**If you are using Colab or Google Cloud Notebooks**, your environment already meets\n", "all the requirements to run this notebook. You can skip this step." ] }, { "cell_type": "markdown", "metadata": { "id": "gCuSR8GkAgzl" }, "source": [ "**Otherwise**, make sure your environment meets this notebook's requirements.\n", "You need the following:\n", "\n", "* The Google Cloud SDK\n", "* Git\n", "* Python 3\n", "* virtualenv\n", "* Jupyter notebook running in a virtual environment with Python 3\n", "\n", "The Google Cloud guide to [Setting up a Python development\n", "environment](https://cloud.google.com/python/setup) and the [Jupyter\n", "installation guide](https://jupyter.org/install) provide detailed instructions\n", "for meeting these requirements. The following steps provide a condensed set of\n", "instructions:\n", "\n", "1. [Install and initialize the Cloud SDK.](https://cloud.google.com/sdk/docs/)\n", "\n", "1. [Install Python 3.](https://cloud.google.com/python/setup#installing_python)\n", "\n", "1. [Install\n", " virtualenv](https://cloud.google.com/python/setup#installing_and_using_virtualenv)\n", " and create a virtual environment that uses Python 3. Activate the virtual environment.\n", "\n", "1. To install Jupyter, run `pip3 install jupyter` on the\n", "command-line in a terminal shell.\n", "\n", "1. To launch Jupyter, run `jupyter notebook` on the command-line in a terminal shell.\n", "\n", "1. Open this notebook in the Jupyter Notebook Dashboard." ] }, { "cell_type": "markdown", "metadata": { "id": "i7EUnXsZhAGF" }, "source": [ "### Install additional packages\n", "\n", "Install the latest version of Vertex SDK for Python." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "2b4ef9b72d43" }, "outputs": [], "source": [ "import os\n", "\n", "# The Google Cloud Notebook product has specific requirements\n", "IS_GOOGLE_CLOUD_NOTEBOOK = os.path.exists(\"/opt/deeplearning/metadata/env_version\")\n", "\n", "# Google Cloud Notebook requires dependencies to be installed with '--user'\n", "USER_FLAG = \"\"\n", "if IS_GOOGLE_CLOUD_NOTEBOOK:\n", " USER_FLAG = \"--user\"" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "wyy5Lbnzg5fi" }, "outputs": [], "source": [ "! pip3 install {USER_FLAG} --upgrade google-cloud-aiplatform" ] }, { "cell_type": "markdown", "metadata": { "id": "hhq5zEbGg0XX" }, "source": [ "### Restart the kernel\n", "\n", "After you install the additional packages, you need to restart the notebook kernel so it can find the packages." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "EzrelQZ22IZj" }, "outputs": [], "source": [ "# Automatically restart kernel after installs\n", "import os\n", "\n", "if not os.getenv(\"IS_TESTING\"):\n", " # Automatically restart kernel after installs\n", " import IPython\n", "\n", " app = IPython.Application.instance()\n", " app.kernel.do_shutdown(True)" ] }, { "cell_type": "markdown", "metadata": { "id": "lWEdiXsJg0XY" }, "source": [ "## Before you begin\n", "\n", "### Select a GPU runtime\n", "\n", "**Make sure you're running this notebook in a GPU runtime if you have that option. In Colab, select \"Runtime --> Change runtime type > GPU\"**" ] }, { "cell_type": "markdown", "metadata": { "id": "BF1j6f9HApxa" }, "source": [ "### Set up your Google Cloud project\n", "\n", "**The following steps are required, regardless of your notebook environment.**\n", "\n", "1. [Select or create a Google Cloud project](https://console.cloud.google.com/cloud-resource-manager). When you first create an account, you get a $300 free credit towards your compute/storage costs.\n", "\n", "1. [Make sure that billing is enabled for your project](https://cloud.google.com/billing/docs/how-to/modify-project).\n", "\n", "1. [Enable the Vertex AI API and Compute Engine API](https://console.cloud.google.com/flows/enableapi?apiid=aiplatform.googleapis.com,compute_component).\n", "1. If you are running this notebook locally, you will need to install the [Cloud SDK](https://cloud.google.com/sdk).\n", "\n", "1. Enter your project ID in the cell below. Then run the cell to make sure the\n", "Cloud SDK uses the right project for all the commands in this notebook.\n", "\n", "**Note**: Jupyter runs lines prefixed with `!` as shell commands, and it interpolates Python variables prefixed with `$` into these commands." ] }, { "cell_type": "markdown", "metadata": { "id": "WReHDGG5g0XY" }, "source": [ "#### Set your project ID\n", "\n", "**If you don't know your project ID**, you may be able to get your project ID using `gcloud`." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "oM1iC_MfAts1" }, "outputs": [], "source": [ "PROJECT_ID = \"\"\n", "\n", "# Get your Google Cloud project ID from gcloud\n", "if not os.getenv(\"IS_TESTING\"):\n", " shell_output=!gcloud config list --format 'value(core.project)' 2>/dev/null\n", " PROJECT_ID = shell_output[0]\n", " print(\"Project ID: \", PROJECT_ID)" ] }, { "cell_type": "markdown", "metadata": { "id": "qJYoRfYng0XZ" }, "source": [ "Otherwise, set your project ID here." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "riG_qUokg0XZ" }, "outputs": [], "source": [ "if PROJECT_ID == \"\" or PROJECT_ID is None:\n", " PROJECT_ID = \"[your-project-id]\" # @param {type:\"string\"}" ] }, { "cell_type": "markdown", "metadata": { "id": "06571eb4063b" }, "source": [ "#### Timestamp\n", "\n", "If you are in a live tutorial session, you might be using a shared test account or project. To avoid name collisions between users on resources created, you create a timestamp for each instance session, and append it onto the name of resources you create in this tutorial." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "697568e92bd6" }, "outputs": [], "source": [ "from datetime import datetime\n", "\n", "TIMESTAMP = datetime.now().strftime(\"%Y%m%d%H%M%S\")" ] }, { "cell_type": "markdown", "metadata": { "id": "dr--iN2kAylZ" }, "source": [ "### Authenticate your Google Cloud account\n", "\n", "**If you are using Google Cloud Notebooks**, your environment is already\n", "authenticated. Skip this step." ] }, { "cell_type": "markdown", "metadata": { "id": "sBCra4QMA2wR" }, "source": [ "**If you are using Colab**, run the cell below and follow the instructions\n", "when prompted to authenticate your account via oAuth.\n", "\n", "**Otherwise**, follow these steps:\n", "\n", "1. In the Cloud Console, go to the [**Create service account key**\n", " page](https://console.cloud.google.com/apis/credentials/serviceaccountkey).\n", "\n", "2. Click **Create service account**.\n", "\n", "3. In the **Service account name** field, enter a name, and\n", " click **Create**.\n", "\n", "4. In the **Grant this service account access to project** section, click the **Role** drop-down list. Type \"Vertex AI\"\n", "into the filter box, and select\n", " **Vertex AI Administrator**. Type \"Storage Object Admin\" into the filter box, and select **Storage Object Admin**.\n", "\n", "5. Click *Create*. A JSON file that contains your key downloads to your\n", "local environment.\n", "\n", "6. Enter the path to your service account key as the\n", "`GOOGLE_APPLICATION_CREDENTIALS` variable in the cell below and run the cell." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "PyQmSRbKA8r-" }, "outputs": [], "source": [ "import os\n", "import sys\n", "\n", "# If you are running this notebook in Colab, run this cell and follow the\n", "# instructions to authenticate your GCP account. This provides access to your\n", "# Cloud Storage bucket and lets you submit training jobs and prediction\n", "# requests.\n", "\n", "# The Google Cloud Notebook product has specific requirements\n", "IS_GOOGLE_CLOUD_NOTEBOOK = os.path.exists(\"/opt/deeplearning/metadata/env_version\")\n", "\n", "# If on Google Cloud Notebooks, then don't execute this code\n", "if not IS_GOOGLE_CLOUD_NOTEBOOK:\n", " if \"google.colab\" in sys.modules:\n", " from google.colab import auth as google_auth\n", "\n", " google_auth.authenticate_user()\n", "\n", " # If you are running this notebook locally, replace the string below with the\n", " # path to your service account key and run this cell to authenticate your GCP\n", " # account.\n", " elif not os.getenv(\"IS_TESTING\"):\n", " %env GOOGLE_APPLICATION_CREDENTIALS ''" ] }, { "cell_type": "markdown", "metadata": { "id": "zgPO1eR3CYjk" }, "source": [ "### Create a Cloud Storage bucket\n", "\n", "**The following steps are required, regardless of your notebook environment.**\n", "\n", "When you submit a custom training job using the Cloud SDK, you will need to provide a staging bucket.\n", "\n", "Set the name of your Cloud Storage bucket below. It must be unique across all\n", "Cloud Storage buckets.\n", "\n", "You may also change the `REGION` variable, which is used for operations\n", "throughout the rest of this notebook. Make sure to [choose a region where Vertex AI services are\n", "available](https://cloud.google.com/vertex-ai/docs/general/locations#available_regions). You may\n", "not use a Multi-Regional Storage bucket for training with Vertex AI." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "MzGDU7TWdts_" }, "outputs": [], "source": [ "BUCKET_NAME = \"gs://[your-bucket-name]\" # @param {type:\"string\"}\n", "REGION = \"[your-region]\" # @param {type:\"string\"}" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "cf221059d072" }, "outputs": [], "source": [ "if BUCKET_NAME == \"\" or BUCKET_NAME is None or BUCKET_NAME == \"gs://[your-bucket-name]\":\n", " BUCKET_NAME = \"gs://\" + PROJECT_ID + \"aip-\" + TIMESTAMP" ] }, { "cell_type": "markdown", "metadata": { "id": "-EcIXiGsCePi" }, "source": [ "**Only if your bucket doesn't already exist**: Run the following cell to create your Cloud Storage bucket." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "NIq7R4HZCfIc" }, "outputs": [], "source": [ "! gsutil mb -l $REGION $BUCKET_NAME" ] }, { "cell_type": "markdown", "metadata": { "id": "ucvCsknMCims" }, "source": [ "Finally, validate access to your Cloud Storage bucket by examining its contents:" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "vhOb7YnwClBb" }, "outputs": [], "source": [ "! gsutil ls -al $BUCKET_NAME" ] }, { "cell_type": "markdown", "metadata": { "id": "XoEqT2Y4DJmf" }, "source": [ "### Import libraries and define constants" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "pRUOFELefqf1" }, "outputs": [], "source": [ "import os\n", "import sys\n", "\n", "from google.cloud import aiplatform\n", "from google.cloud.aiplatform import hyperparameter_tuning as hpt" ] }, { "cell_type": "markdown", "metadata": { "id": "reBCSTKOg47l" }, "source": [ "### Write Dockerfile\n", "\n", "The first step in containerizing your code is to create a Dockerfile. In the Dockerfile, you'll include all the commands needed to run the image such as installing the necessary libraries and setting up the entry point for the training code.\n", "\n", "This Dockerfile uses the Deep Learning Container TensorFlow Enterprise 2.5 GPU Docker image. The Deep Learning Containers on Google Cloud come with many common ML and data science frameworks pre-installed. After downloading that image, this Dockerfile installs the [CloudML Hypertune](https://github.com/GoogleCloudPlatform/cloudml-hypertune) library and sets up the entrypoint for the training code.\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%%writefile Dockerfile\n", "\n", "FROM gcr.io/deeplearning-platform-release/tf2-gpu.2-5\n", "WORKDIR /\n", "\n", "# Installs hypertune library\n", "RUN pip install cloudml-hypertune\n", "\n", "# Copies the trainer code to the docker image.\n", "COPY trainer /trainer\n", "\n", "# Sets up the entry point to invoke the trainer.\n", "ENTRYPOINT [\"python\", \"-m\", \"trainer.task\"]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Create training application code\n", "\n", "Next, you create a trainer directory with a `task.py` script that contains the code for your training application." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "MjJTYC86hPOZ" }, "outputs": [], "source": [ "# Create trainer directory\n", "\n", "! mkdir trainer" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In the next cell, you write the contents of the training script, `task.py`. This file downloads the _horses or humans_ dataset from TensorFlow datasets and trains a `tf.keras` functional model using `MirroredStrategy` from the `tf.distribute` module.\n", "\n", "There are a few components that are specific to using the hyperparameter tuning service:\n", "\n", "* The script imports the `hypertune` library. Note that the Dockerfile included instructions to pip install the hypertune library.\n", "* The function `get_args()` defines a command-line argument for each hyperparameter you want to tune. In this example, the hyperparameters that will be tuned are the learning rate, the momentum value in the optimizer, and the number of units in the last hidden layer of the model. The value passed in those arguments is then used to set the corresponding hyperparameter in the code.\n", "* At the end of the `main()` function, the hypertune library is used to define the metric to optimize. In this example, the metric that will be optimized is the the validation accuracy. This metric is passed to an instance of `HyperTune`." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%%writefile trainer/task.py\n", "\n", "import argparse\n", "import hypertune\n", "import tensorflow as tf\n", "import tensorflow_datasets as tfds\n", "\n", "def get_args():\n", " \"\"\"Parses args. Must include all hyperparameters you want to tune.\"\"\"\n", "\n", " parser = argparse.ArgumentParser()\n", " parser.add_argument(\n", " '--learning_rate', required=True, type=float, help='learning rate')\n", " parser.add_argument(\n", " '--momentum', required=True, type=float, help='SGD momentum value')\n", " parser.add_argument(\n", " '--units',\n", " required=True,\n", " type=int,\n", " help='number of units in last hidden layer')\n", " parser.add_argument(\n", " '--epochs',\n", " required=False,\n", " type=int,\n", " default=10,\n", " help='number of training epochs')\n", " args = parser.parse_args()\n", " return args\n", "\n", "\n", "def preprocess_data(image, label):\n", " \"\"\"Resizes and scales images.\"\"\"\n", "\n", " image = tf.image.resize(image, (150, 150))\n", " return tf.cast(image, tf.float32) / 255., label\n", "\n", "\n", "def create_dataset(batch_size):\n", " \"\"\"Loads Horses Or Humans dataset and preprocesses data.\"\"\"\n", "\n", " data, info = tfds.load(\n", " name='horses_or_humans', as_supervised=True, with_info=True)\n", "\n", " # Create train dataset\n", " train_data = data['train'].map(preprocess_data)\n", " train_data = train_data.shuffle(1000)\n", " train_data = train_data.batch(batch_size)\n", "\n", " # Create validation dataset\n", " validation_data = data['test'].map(preprocess_data)\n", " validation_data = validation_data.batch(64)\n", "\n", " return train_data, validation_data\n", "\n", "\n", "def create_model(units, learning_rate, momentum):\n", " \"\"\"Defines and compiles model.\"\"\"\n", "\n", " inputs = tf.keras.Input(shape=(150, 150, 3))\n", " x = tf.keras.layers.Conv2D(16, (3, 3), activation='relu')(inputs)\n", " x = tf.keras.layers.MaxPooling2D((2, 2))(x)\n", " x = tf.keras.layers.Conv2D(32, (3, 3), activation='relu')(x)\n", " x = tf.keras.layers.MaxPooling2D((2, 2))(x)\n", " x = tf.keras.layers.Conv2D(64, (3, 3), activation='relu')(x)\n", " x = tf.keras.layers.MaxPooling2D((2, 2))(x)\n", " x = tf.keras.layers.Flatten()(x)\n", " x = tf.keras.layers.Dense(units, activation='relu')(x)\n", " outputs = tf.keras.layers.Dense(1, activation='sigmoid')(x)\n", " model = tf.keras.Model(inputs, outputs)\n", " model.compile(\n", " loss='binary_crossentropy',\n", " optimizer=tf.keras.optimizers.SGD(\n", " learning_rate=learning_rate, momentum=momentum),\n", " metrics=['accuracy'])\n", " return model\n", "\n", "\n", "def main():\n", " args = get_args()\n", "\n", " # Create Strategy\n", " strategy = tf.distribute.MirroredStrategy()\n", "\n", " # Scale batch size\n", " GLOBAL_BATCH_SIZE = 64 * strategy.num_replicas_in_sync \n", " train_data, validation_data = create_dataset(GLOBAL_BATCH_SIZE)\n", "\n", " # Wrap model variables within scope\n", " with strategy.scope():\n", " model = create_model(args.units, args.learning_rate, args.momentum)\n", "\n", " # Train model\n", " history = model.fit(\n", " train_data, epochs=args.epochs, validation_data=validation_data)\n", "\n", " # Define Metric\n", " hp_metric = history.history['val_accuracy'][-1]\n", "\n", " hpt = hypertune.HyperTune()\n", " hpt.report_hyperparameter_tuning_metric(\n", " hyperparameter_metric_tag='accuracy',\n", " metric_value=hp_metric,\n", " global_step=args.epochs)\n", "\n", "\n", "if __name__ == '__main__':\n", " main()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Build the Container\n", "\n", "In the next cells, you build the container and push it to Google Container Registry." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Set the IMAGE_URI\n", "IMAGE_URI=f\"gcr.io/{PROJECT_ID}/horse-human:hypertune\"" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Build the docker image\n", "! docker build -f Dockerfile -t $IMAGE_URI ./" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Push it to Google Container Registry:\n", "! docker push $IMAGE_URI" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Create and run hyperparameter tuning job on Vertex AI\n", "\n", "Once your container is pushed to Google Container Registry, you use the Vertex SDK to create and run the hyperparameter tuning job.\n", "\n", "You define the following specifications:\n", "* `worker_pool_specs`: Dictionary specifying the machine type and Docker image. This example defines a single node cluster with one `n1-standard-4` machine with two `NVIDIA_TESLA_T4` GPUs.\n", "* `parameter_spec`: Dictionary specifying the parameters to optimize. The dictionary key is the string assigned to the command line argument for each hyperparameter in your training application code, and the dictionary value is the parameter specification. The parameter specification includes the type, min/max values, and scale for the hyperparameter.\n", "* `metric_spec`: Dictionary specifying the metric to optimize. The dictionary key is the `hyperparameter_metric_tag` that you set in your training application code, and the value is the optimization goal." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "worker_pool_specs = [{\n", " 'machine_spec': {\n", " 'machine_type': 'n1-standard-4',\n", " 'accelerator_type': 'NVIDIA_TESLA_T4',\n", " 'accelerator_count': 2\n", " },\n", " 'replica_count': 1,\n", " 'container_spec': {\n", " 'image_uri': IMAGE_URI\n", " }\n", "}]\n", "\n", "metric_spec = {'accuracy': 'maximize'}\n", "\n", "parameter_spec = {\n", " 'learning_rate': hpt.DoubleParameterSpec(min=0.001, max=1, scale='log'),\n", " 'momentum': hpt.DoubleParameterSpec(min=0, max=1, scale='linear'),\n", " 'units': hpt.DiscreteParameterSpec(values=[64, 128, 512], scale=None)\n", "}" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Create a `CustomJob`." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "# Create a CustomJob\n", "\n", "JOB_NAME = 'horses-humans-hyperparam-job' + TIMESTAMP\n", "\n", "my_custom_job = aiplatform.CustomJob(display_name=JOB_NAME,\n", " worker_pool_specs=worker_pool_specs,\n", " staging_bucket=BUCKET_NAME)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Then, create and run a `HyperparameterTuningJob`.\n", "\n", "There are a few arguments to note:\n", "\n", "* `max_trial_count`: Sets an upper bound on the number of trials the service will run. The recommended practice is to start with a smaller number of trials and get a sense of how impactful your chosen hyperparameters are before scaling up.\n", "\n", "* `parallel_trial_count`: If you use parallel trials, the service provisions multiple training processing clusters. The worker pool spec that you specify when creating the job is used for each individual training cluster. Increasing the number of parallel trials reduces the amount of time the hyperparameter tuning job takes to run; however, it can reduce the effectiveness of the job overall. This is because the default tuning strategy uses results of previous trials to inform the assignment of values in subsequent trials.\n", " \n", "* `search_algorithm`: The available search algorithms are grid, random, or default (None). The default option applies Bayesian optimization to search the space of possible hyperparameter values and is the recommended algorithm." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Create and run HyperparameterTuningJob\n", "\n", "hp_job = aiplatform.HyperparameterTuningJob(\n", " display_name=JOB_NAME,\n", " custom_job=my_custom_job,\n", " metric_spec=metric_spec,\n", " parameter_spec=parameter_spec,\n", " max_trial_count=15,\n", " parallel_trial_count=3,\n", " search_algorithm=None)\n", "\n", "hp_job.run()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Click on the generated link to see your run in the Cloud Console. When the job completes, you will see the results of the tuning trials." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "![console_ui_results](tuning_results.png)" ] }, { "cell_type": "markdown", "metadata": { "id": "TpV-iwP9qw9c" }, "source": [ "## Cleaning up\n", "\n", "To clean up all Google Cloud resources used in this project, you can [delete the Google Cloud\n", "project](https://cloud.google.com/resource-manager/docs/creating-managing-projects#shutting_down_projects) you used for the tutorial.\n", "\n", "Otherwise, you can delete the individual resources you created in this tutorial:" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "sx_vKniMq9ZX" }, "outputs": [], "source": [ "# Delete Cloud Storage objects that were created\n", "! gsutil -m rm -r $BUCKET_NAME" ] } ], "metadata": { "colab": { "collapsed_sections": [], "name": "notebook_template.ipynb", "toc_visible": true }, "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" } }, "nbformat": 4, "nbformat_minor": 1 }