notebooks/community/gapic/custom/showcase_custom_image_classification_online.ipynb (2,189 lines of code) (raw):

{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": { "id": "copyright" }, "outputs": [], "source": [ "# Copyright 2020 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": "title" }, "source": [ "# Vertex client library: Custom training image classification model for online prediction\n", "\n", "<table align=\"left\">\n", " <td>\n", " <a href=\"https://colab.research.google.com/github/GoogleCloudPlatform/vertex-ai-samples/blob/master/notebooks/community/gapic/custom/showcase_custom_image_classification_online.ipynb\">\n", " <img src=\"https://cloud.google.com/ml-engine/images/colab-logo-32px.png\" alt=\"Colab logo\"> Run in Colab\n", " </a>\n", " </td>\n", " <td>\n", " <a href=\"https://github.com/GoogleCloudPlatform/vertex-ai-samples/blob/master/notebooks/community/gapic/custom/showcase_custom_image_classification_online.ipynb\">\n", " <img src=\"https://cloud.google.com/ml-engine/images/github-logo-32px.png\" alt=\"GitHub logo\">\n", " View on GitHub\n", " </a>\n", " </td>\n", "</table>\n", "<br/><br/><br/>" ] }, { "cell_type": "markdown", "metadata": { "id": "overview:custom" }, "source": [ "## Overview\n", "\n", "\n", "This tutorial demonstrates how to use the Vertex client library for Python to train and deploy a custom image classification model for online prediction." ] }, { "cell_type": "markdown", "metadata": { "id": "dataset:custom,cifar10,icn" }, "source": [ "### Dataset\n", "\n", "The dataset used for this tutorial is the [CIFAR10 dataset](https://www.tensorflow.org/datasets/catalog/cifar10) from [TensorFlow Datasets](https://www.tensorflow.org/datasets/catalog/overview). The version of the dataset you will use is built into TensorFlow. The trained model predicts which type of class an image is from ten classes: airplane, automobile, bird, cat, deer, dog, frog, horse, ship, truck." ] }, { "cell_type": "markdown", "metadata": { "id": "objective:custom,training,online_prediction" }, "source": [ "### Objective\n", "\n", "In this tutorial, you create a custom model from a Python script in a Google prebuilt Docker container using the Vertex client library, and then do a prediction on the deployed model by sending data. You can alternatively create custom models using `gcloud` command-line tool or online using Google Cloud Console.\n", "\n", "The steps performed include:\n", "\n", "- Create a Vertex custom job for training a model.\n", "- Train a TensorFlow model.\n", "- Retrieve and load the model artifacts.\n", "- View the model evaluation.\n", "- Upload the model as a Vertex `Model` resource.\n", "- Deploy the `Model` resource to a serving `Endpoint` resource.\n", "- Make a prediction.\n", "- Undeploy the `Model` resource." ] }, { "cell_type": "markdown", "metadata": { "id": "costs" }, "source": [ "### Costs\n", "\n", "This tutorial uses billable components of Google Cloud (GCP):\n", "\n", "* Vertex AI\n", "* Cloud Storage\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": "install_aip" }, "source": [ "## Installation\n", "\n", "Install the latest version of Vertex client library." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "install_aip" }, "outputs": [], "source": [ "import os\n", "import sys\n", "\n", "# Google Cloud Notebook\n", "if os.path.exists(\"/opt/deeplearning/metadata/env_version\"):\n", " USER_FLAG = \"--user\"\n", "else:\n", " USER_FLAG = \"\"\n", "\n", "! pip3 install -U google-cloud-aiplatform $USER_FLAG" ] }, { "cell_type": "markdown", "metadata": { "id": "install_storage" }, "source": [ "Install the latest GA version of *google-cloud-storage* library as well." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "install_storage" }, "outputs": [], "source": [ "! pip3 install -U google-cloud-storage $USER_FLAG" ] }, { "cell_type": "markdown", "metadata": { "id": "restart" }, "source": [ "### Restart the kernel\n", "\n", "Once you've installed the Vertex client library and Google *cloud-storage*, you need to restart the notebook kernel so it can find the packages." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "restart" }, "outputs": [], "source": [ "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": "before_you_begin" }, "source": [ "## Before you begin\n", "\n", "### 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**\n", "\n", "### 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", "2. [Make sure that billing is enabled for your project.](https://cloud.google.com/billing/docs/how-to/modify-project)\n", "\n", "3. [Enable the Vertex APIs and Compute Engine APIs.](https://console.cloud.google.com/flows/enableapi?apiid=ml.googleapis.com,compute_component)\n", "\n", "4. [The Google Cloud SDK](https://cloud.google.com/sdk) is already installed in Google Cloud Notebook.\n", "\n", "5. 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": "code", "execution_count": null, "metadata": { "id": "set_project_id" }, "outputs": [], "source": [ "PROJECT_ID = \"[your-project-id]\" # @param {type:\"string\"}" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "autoset_project_id" }, "outputs": [], "source": [ "if PROJECT_ID == \"\" or PROJECT_ID is None or PROJECT_ID == \"[your-project-id]\":\n", " # Get your GCP project id from gcloud\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": "code", "execution_count": null, "metadata": { "id": "set_gcloud_project_id" }, "outputs": [], "source": [ "! gcloud config set project $PROJECT_ID" ] }, { "cell_type": "markdown", "metadata": { "id": "region" }, "source": [ "#### Region\n", "\n", "You can also change the `REGION` variable, which is used for operations\n", "throughout the rest of this notebook. Below are regions supported for Vertex. We recommend that you choose the region closest to you.\n", "\n", "- Americas: `us-central1`\n", "- Europe: `europe-west4`\n", "- Asia Pacific: `asia-east1`\n", "\n", "You may not use a multi-regional bucket for training with Vertex. Not all regions provide support for all Vertex services. For the latest support per region, see the [Vertex locations documentation](https://cloud.google.com/vertex-ai/docs/general/locations)" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "region" }, "outputs": [], "source": [ "REGION = \"us-central1\" # @param {type: \"string\"}" ] }, { "cell_type": "markdown", "metadata": { "id": "timestamp" }, "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 onto the name of resources which will be created in this tutorial." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "timestamp" }, "outputs": [], "source": [ "from datetime import datetime\n", "\n", "TIMESTAMP = datetime.now().strftime(\"%Y%m%d%H%M%S\")" ] }, { "cell_type": "markdown", "metadata": { "id": "gcp_authenticate" }, "source": [ "### Authenticate your Google Cloud account\n", "\n", "**If you are using Google Cloud Notebook**, your environment is already authenticated. Skip this step.\n", "\n", "**If you are using Colab**, run the cell below and follow the instructions when prompted to authenticate your account via oAuth.\n", "\n", "**Otherwise**, follow these steps:\n", "\n", "In the Cloud Console, go to the [Create service account key](https://console.cloud.google.com/apis/credentials/serviceaccountkey) page.\n", "\n", "**Click Create service account**.\n", "\n", "In the **Service account name** field, enter a name, and click **Create**.\n", "\n", "In the **Grant this service account access to project** section, click the Role drop-down list. Type \"Vertex\" into the filter box, and select **Vertex Administrator**. Type \"Storage Object Admin\" into the filter box, and select **Storage Object Admin**.\n", "\n", "Click Create. A JSON file that contains your key downloads to your local environment.\n", "\n", "Enter the path to your service account key as the GOOGLE_APPLICATION_CREDENTIALS variable in the cell below and run the cell." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "gcp_authenticate" }, "outputs": [], "source": [ "# 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", "# If on Google Cloud Notebook, then don't execute this code\n", "if not os.path.exists(\"/opt/deeplearning/metadata/env_version\"):\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": "bucket:custom" }, "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 Vertex client library, you upload a Python package\n", "containing your training code to a Cloud Storage bucket. Vertex runs\n", "the code from this package. In this tutorial, Vertex also saves the\n", "trained model that results from your job in the same bucket. You can then\n", "create an `Endpoint` resource based on this output in order to serve\n", "online predictions.\n", "\n", "Set the name of your Cloud Storage bucket below. Bucket names must be globally unique across all Google Cloud projects, including those outside of your organization." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "bucket" }, "outputs": [], "source": [ "BUCKET_NAME = \"gs://[your-bucket-name]\" # @param {type:\"string\"}" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "autoset_bucket" }, "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": "create_bucket" }, "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": "create_bucket" }, "outputs": [], "source": [ "! gsutil mb -l $REGION $BUCKET_NAME" ] }, { "cell_type": "markdown", "metadata": { "id": "validate_bucket" }, "source": [ "Finally, validate access to your Cloud Storage bucket by examining its contents:" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "validate_bucket" }, "outputs": [], "source": [ "! gsutil ls -al $BUCKET_NAME" ] }, { "cell_type": "markdown", "metadata": { "id": "setup_vars" }, "source": [ "### Set up variables\n", "\n", "Next, set up some variables used throughout the tutorial.\n", "### Import libraries and define constants" ] }, { "cell_type": "markdown", "metadata": { "id": "import_aip:protobuf" }, "source": [ "#### Import Vertex client library\n", "\n", "Import the Vertex client library into our Python environment." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "import_aip:protobuf" }, "outputs": [], "source": [ "import time\n", "\n", "from google.cloud.aiplatform import gapic as aip\n", "from google.protobuf import json_format\n", "from google.protobuf.struct_pb2 import Value" ] }, { "cell_type": "markdown", "metadata": { "id": "aip_constants" }, "source": [ "#### Vertex constants\n", "\n", "Setup up the following constants for Vertex:\n", "\n", "- `API_ENDPOINT`: The Vertex API service endpoint for dataset, model, job, pipeline and endpoint services.\n", "- `PARENT`: The Vertex location root path for dataset, model, job, pipeline and endpoint resources." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "aip_constants" }, "outputs": [], "source": [ "# API service endpoint\n", "API_ENDPOINT = \"{}-aiplatform.googleapis.com\".format(REGION)\n", "\n", "# Vertex location root path for your dataset, model and endpoint resources\n", "PARENT = \"projects/\" + PROJECT_ID + \"/locations/\" + REGION" ] }, { "cell_type": "markdown", "metadata": { "id": "accelerators:training,prediction,cpu" }, "source": [ "#### Hardware Accelerators\n", "\n", "Set the hardware accelerators (e.g., GPU), if any, for training and prediction.\n", "\n", "Set the variables `TRAIN_GPU/TRAIN_NGPU` and `DEPLOY_GPU/DEPLOY_NGPU` to use a container image supporting a GPU and the number of GPUs allocated to the virtual machine (VM) instance. For example, to use a GPU container image with 4 Nvidia Telsa K80 GPUs allocated to each VM, you would specify:\n", "\n", " (aip.AcceleratorType.NVIDIA_TESLA_K80, 4)\n", "\n", "For GPU, available accelerators include:\n", " - aip.AcceleratorType.NVIDIA_TESLA_K80\n", " - aip.AcceleratorType.NVIDIA_TESLA_P100\n", " - aip.AcceleratorType.NVIDIA_TESLA_P4\n", " - aip.AcceleratorType.NVIDIA_TESLA_T4\n", " - aip.AcceleratorType.NVIDIA_TESLA_V100\n", "\n", "\n", "Otherwise specify `(None, None)` to use a container image to run on a CPU.\n", "\n", "*Note*: TF releases before 2.3 for GPU support will fail to load the custom model in this tutorial. It is a known issue and fixed in TF 2.3 -- which is caused by static graph ops that are generated in the serving function. If you encounter this issue on your own custom models, use a container image for TF 2.3 with GPU support." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "accelerators:training,prediction,cpu" }, "outputs": [], "source": [ "if os.getenv(\"IS_TESTING_TRAIN_GPU\"):\n", " TRAIN_GPU, TRAIN_NGPU = (\n", " aip.AcceleratorType.NVIDIA_TESLA_K80,\n", " int(os.getenv(\"IS_TESTING_TRAIN_GPU\")),\n", " )\n", "else:\n", " TRAIN_GPU, TRAIN_NGPU = (aip.AcceleratorType.NVIDIA_TESLA_K80, 1)\n", "\n", "if os.getenv(\"IS_TESTING_DEPOLY_GPU\"):\n", " DEPLOY_GPU, DEPLOY_NGPU = (\n", " aip.AcceleratorType.NVIDIA_TESLA_K80,\n", " int(os.getenv(\"IS_TESTING_DEPOLY_GPU\")),\n", " )\n", "else:\n", " DEPLOY_GPU, DEPLOY_NGPU = (None, None)" ] }, { "cell_type": "markdown", "metadata": { "id": "container:training,prediction" }, "source": [ "#### Container (Docker) image\n", "\n", "Next, we will set the Docker container images for training and prediction\n", "\n", " - TensorFlow 1.15\n", " - `gcr.io/cloud-aiplatform/training/tf-cpu.1-15:latest`\n", " - `gcr.io/cloud-aiplatform/training/tf-gpu.1-15:latest`\n", " - TensorFlow 2.1\n", " - `gcr.io/cloud-aiplatform/training/tf-cpu.2-1:latest`\n", " - `gcr.io/cloud-aiplatform/training/tf-gpu.2-1:latest`\n", " - TensorFlow 2.2\n", " - `gcr.io/cloud-aiplatform/training/tf-cpu.2-2:latest`\n", " - `gcr.io/cloud-aiplatform/training/tf-gpu.2-2:latest`\n", " - TensorFlow 2.3\n", " - `gcr.io/cloud-aiplatform/training/tf-cpu.2-3:latest`\n", " - `gcr.io/cloud-aiplatform/training/tf-gpu.2-3:latest`\n", " - TensorFlow 2.4\n", " - `gcr.io/cloud-aiplatform/training/tf-cpu.2-4:latest`\n", " - `gcr.io/cloud-aiplatform/training/tf-gpu.2-4:latest`\n", " - XGBoost\n", " - `gcr.io/cloud-aiplatform/training/xgboost-cpu.1-1`\n", " - Scikit-learn\n", " - `gcr.io/cloud-aiplatform/training/scikit-learn-cpu.0-23:latest`\n", " - Pytorch\n", " - `gcr.io/cloud-aiplatform/training/pytorch-cpu.1-4:latest`\n", " - `gcr.io/cloud-aiplatform/training/pytorch-cpu.1-5:latest`\n", " - `gcr.io/cloud-aiplatform/training/pytorch-cpu.1-6:latest`\n", " - `gcr.io/cloud-aiplatform/training/pytorch-cpu.1-7:latest`\n", "\n", "For the latest list, see [Pre-built containers for training](https://cloud.google.com/vertex-ai/docs/training/pre-built-containers).\n", "\n", " - TensorFlow 1.15\n", " - `gcr.io/cloud-aiplatform/prediction/tf-cpu.1-15:latest`\n", " - `gcr.io/cloud-aiplatform/prediction/tf-gpu.1-15:latest`\n", " - TensorFlow 2.1\n", " - `gcr.io/cloud-aiplatform/prediction/tf2-cpu.2-1:latest`\n", " - `gcr.io/cloud-aiplatform/prediction/tf2-gpu.2-1:latest`\n", " - TensorFlow 2.2\n", " - `gcr.io/cloud-aiplatform/prediction/tf2-cpu.2-2:latest`\n", " - `gcr.io/cloud-aiplatform/prediction/tf2-gpu.2-2:latest`\n", " - TensorFlow 2.3\n", " - `gcr.io/cloud-aiplatform/prediction/tf2-cpu.2-3:latest`\n", " - `gcr.io/cloud-aiplatform/prediction/tf2-gpu.2-3:latest`\n", " - XGBoost\n", " - `gcr.io/cloud-aiplatform/prediction/xgboost-cpu.1-2:latest`\n", " - `gcr.io/cloud-aiplatform/prediction/xgboost-cpu.1-1:latest`\n", " - `gcr.io/cloud-aiplatform/prediction/xgboost-cpu.0-90:latest`\n", " - `gcr.io/cloud-aiplatform/prediction/xgboost-cpu.0-82:latest`\n", " - Scikit-learn\n", " - `gcr.io/cloud-aiplatform/prediction/sklearn-cpu.0-23:latest`\n", " - `gcr.io/cloud-aiplatform/prediction/sklearn-cpu.0-22:latest`\n", " - `gcr.io/cloud-aiplatform/prediction/sklearn-cpu.0-20:latest`\n", "\n", "For the latest list, see [Pre-built containers for prediction](https://cloud.google.com/vertex-ai/docs/predictions/pre-built-containers)" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "container:training,prediction" }, "outputs": [], "source": [ "if os.getenv(\"IS_TESTING_TF\"):\n", " TF = os.getenv(\"IS_TESTING_TF\")\n", "else:\n", " TF = \"2-1\"\n", "\n", "if TF[0] == \"2\":\n", " if TRAIN_GPU:\n", " TRAIN_VERSION = \"tf-gpu.{}\".format(TF)\n", " else:\n", " TRAIN_VERSION = \"tf-cpu.{}\".format(TF)\n", " if DEPLOY_GPU:\n", " DEPLOY_VERSION = \"tf2-gpu.{}\".format(TF)\n", " else:\n", " DEPLOY_VERSION = \"tf2-cpu.{}\".format(TF)\n", "else:\n", " if TRAIN_GPU:\n", " TRAIN_VERSION = \"tf-gpu.{}\".format(TF)\n", " else:\n", " TRAIN_VERSION = \"tf-cpu.{}\".format(TF)\n", " if DEPLOY_GPU:\n", " DEPLOY_VERSION = \"tf-gpu.{}\".format(TF)\n", " else:\n", " DEPLOY_VERSION = \"tf-cpu.{}\".format(TF)\n", "\n", "TRAIN_IMAGE = \"gcr.io/cloud-aiplatform/training/{}:latest\".format(TRAIN_VERSION)\n", "DEPLOY_IMAGE = \"gcr.io/cloud-aiplatform/prediction/{}:latest\".format(DEPLOY_VERSION)\n", "\n", "print(\"Training:\", TRAIN_IMAGE, TRAIN_GPU, TRAIN_NGPU)\n", "print(\"Deployment:\", DEPLOY_IMAGE, DEPLOY_GPU, DEPLOY_NGPU)" ] }, { "cell_type": "markdown", "metadata": { "id": "machine:training,prediction" }, "source": [ "#### Machine Type\n", "\n", "Next, set the machine type to use for training and prediction.\n", "\n", "- Set the variables `TRAIN_COMPUTE` and `DEPLOY_COMPUTE` to configure the compute resources for the VMs you will use for for training and prediction.\n", " - `machine type`\n", " - `n1-standard`: 3.75GB of memory per vCPU.\n", " - `n1-highmem`: 6.5GB of memory per vCPU\n", " - `n1-highcpu`: 0.9 GB of memory per vCPU\n", " - `vCPUs`: number of \\[2, 4, 8, 16, 32, 64, 96 \\]\n", "\n", "*Note: The following is not supported for training:*\n", "\n", " - `standard`: 2 vCPUs\n", " - `highcpu`: 2, 4 and 8 vCPUs\n", "\n", "*Note: You may also use n2 and e2 machine types for training and deployment, but they do not support GPUs*." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "machine:training,prediction" }, "outputs": [], "source": [ "if os.getenv(\"IS_TESTING_TRAIN_MACHINE\"):\n", " MACHINE_TYPE = os.getenv(\"IS_TESTING_TRAIN_MACHINE\")\n", "else:\n", " MACHINE_TYPE = \"n1-standard\"\n", "\n", "VCPU = \"4\"\n", "TRAIN_COMPUTE = MACHINE_TYPE + \"-\" + VCPU\n", "print(\"Train machine type\", TRAIN_COMPUTE)\n", "\n", "if os.getenv(\"IS_TESTING_DEPLOY_MACHINE\"):\n", " MACHINE_TYPE = os.getenv(\"IS_TESTING_DEPLOY_MACHINE\")\n", "else:\n", " MACHINE_TYPE = \"n1-standard\"\n", "\n", "VCPU = \"4\"\n", "DEPLOY_COMPUTE = MACHINE_TYPE + \"-\" + VCPU\n", "print(\"Deploy machine type\", DEPLOY_COMPUTE)" ] }, { "cell_type": "markdown", "metadata": { "id": "tutorial_start:custom" }, "source": [ "# Tutorial\n", "\n", "Now you are ready to start creating your own custom model and training for CIFAR10." ] }, { "cell_type": "markdown", "metadata": { "id": "clients:custom" }, "source": [ "## Set up clients\n", "\n", "The Vertex client library works as a client/server model. On your side (the Python script) you will create a client that sends requests and receives responses from the Vertex server.\n", "\n", "You will use different clients in this tutorial for different steps in the workflow. So set them all up upfront.\n", "\n", "- Model Service for `Model` resources.\n", "- Endpoint Service for deployment.\n", "- Job Service for batch jobs and custom training.\n", "- Prediction Service for serving." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "clients:custom" }, "outputs": [], "source": [ "# client options same for all services\n", "client_options = {\"api_endpoint\": API_ENDPOINT}\n", "\n", "\n", "def create_job_client():\n", " client = aip.JobServiceClient(client_options=client_options)\n", " return client\n", "\n", "\n", "def create_model_client():\n", " client = aip.ModelServiceClient(client_options=client_options)\n", " return client\n", "\n", "\n", "def create_endpoint_client():\n", " client = aip.EndpointServiceClient(client_options=client_options)\n", " return client\n", "\n", "\n", "def create_prediction_client():\n", " client = aip.PredictionServiceClient(client_options=client_options)\n", " return client\n", "\n", "\n", "clients = {}\n", "clients[\"job\"] = create_job_client()\n", "clients[\"model\"] = create_model_client()\n", "clients[\"endpoint\"] = create_endpoint_client()\n", "clients[\"prediction\"] = create_prediction_client()\n", "\n", "for client in clients.items():\n", " print(client)" ] }, { "cell_type": "markdown", "metadata": { "id": "train_custom_model" }, "source": [ "## Train a model\n", "\n", "There are two ways you can train a custom model using a container image:\n", "\n", "- **Use a Google Cloud prebuilt container**. If you use a prebuilt container, you will additionally specify a Python package to install into the container image. This Python package contains your code for training a custom model.\n", "\n", "- **Use your own custom container image**. If you use your own container, the container needs to contain your code for training a custom model." ] }, { "cell_type": "markdown", "metadata": { "id": "train_custom_job_specification:prebuilt_container" }, "source": [ "## Prepare your custom job specification\n", "\n", "Now that your clients are ready, your first step is to create a Job Specification for your custom training job. The job specification will consist of the following:\n", "\n", "- `worker_pool_spec` : The specification of the type of machine(s) you will use for training and how many (single or distributed)\n", "- `python_package_spec` : The specification of the Python package to be installed with the pre-built container." ] }, { "cell_type": "markdown", "metadata": { "id": "train_custom_job_machine_specification" }, "source": [ "### Prepare your machine specification\n", "\n", "Now define the machine specification for your custom training job. This tells Vertex what type of machine instance to provision for the training.\n", " - `machine_type`: The type of GCP instance to provision -- e.g., n1-standard-8.\n", " - `accelerator_type`: The type, if any, of hardware accelerator. In this tutorial if you previously set the variable `TRAIN_GPU != None`, you are using a GPU; otherwise you will use a CPU.\n", " - `accelerator_count`: The number of accelerators." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "train_custom_job_machine_specification" }, "outputs": [], "source": [ "if TRAIN_GPU:\n", " machine_spec = {\n", " \"machine_type\": TRAIN_COMPUTE,\n", " \"accelerator_type\": TRAIN_GPU,\n", " \"accelerator_count\": TRAIN_NGPU,\n", " }\n", "else:\n", " machine_spec = {\"machine_type\": TRAIN_COMPUTE, \"accelerator_count\": 0}" ] }, { "cell_type": "markdown", "metadata": { "id": "train_custom_job_disk_specification" }, "source": [ "### Prepare your disk specification\n", "\n", "(optional) Now define the disk specification for your custom training job. This tells Vertex what type and size of disk to provision in each machine instance for the training.\n", "\n", " - `boot_disk_type`: Either SSD or Standard. SSD is faster, and Standard is less expensive. Defaults to SSD.\n", " - `boot_disk_size_gb`: Size of disk in GB." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "train_custom_job_disk_specification" }, "outputs": [], "source": [ "DISK_TYPE = \"pd-ssd\" # [ pd-ssd, pd-standard]\n", "DISK_SIZE = 200 # GB\n", "\n", "disk_spec = {\"boot_disk_type\": DISK_TYPE, \"boot_disk_size_gb\": DISK_SIZE}" ] }, { "cell_type": "markdown", "metadata": { "id": "train_custom_job_worker_pool_specification:prebuilt_container" }, "source": [ "### Define the worker pool specification\n", "\n", "Next, you define the worker pool specification for your custom training job. The worker pool specification will consist of the following:\n", "\n", "- `replica_count`: The number of instances to provision of this machine type.\n", "- `machine_spec`: The hardware specification.\n", "- `disk_spec` : (optional) The disk storage specification.\n", "\n", "- `python_package`: The Python training package to install on the VM instance(s) and which Python module to invoke, along with command line arguments for the Python module.\n", "\n", "Let's dive deeper now into the python package specification:\n", "\n", "-`executor_image_spec`: This is the docker image which is configured for your custom training job.\n", "\n", "-`package_uris`: This is a list of the locations (URIs) of your python training packages to install on the provisioned instance. The locations need to be in a Cloud Storage bucket. These can be either individual python files or a zip (archive) of an entire package. In the later case, the job service will unzip (unarchive) the contents into the docker image.\n", "\n", "-`python_module`: The Python module (script) to invoke for running the custom training job. In this example, you will be invoking `trainer.task.py` -- note that it was not neccessary to append the `.py` suffix.\n", "\n", "-`args`: The command line arguments to pass to the corresponding Pythom module. In this example, you will be setting:\n", " - `\"--model-dir=\" + MODEL_DIR` : The Cloud Storage location where to store the model artifacts. There are two ways to tell the training script where to save the model artifacts:\n", " - direct: You pass the Cloud Storage location as a command line argument to your training script (set variable `DIRECT = True`), or\n", " - indirect: The service passes the Cloud Storage location as the environment variable `AIP_MODEL_DIR` to your training script (set variable `DIRECT = False`). In this case, you tell the service the model artifact location in the job specification.\n", " - `\"--epochs=\" + EPOCHS`: The number of epochs for training.\n", " - `\"--steps=\" + STEPS`: The number of steps (batches) per epoch.\n", " - `\"--distribute=\" + TRAIN_STRATEGY\"` : The training distribution strategy to use for single or distributed training.\n", " - `\"single\"`: single device.\n", " - `\"mirror\"`: all GPU devices on a single compute instance.\n", " - `\"multi\"`: all GPU devices on all compute instances." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "train_custom_job_worker_pool_specification:prebuilt_container" }, "outputs": [], "source": [ "JOB_NAME = \"custom_job_\" + TIMESTAMP\n", "MODEL_DIR = \"{}/{}\".format(BUCKET_NAME, JOB_NAME)\n", "\n", "if not TRAIN_NGPU or TRAIN_NGPU < 2:\n", " TRAIN_STRATEGY = \"single\"\n", "else:\n", " TRAIN_STRATEGY = \"mirror\"\n", "\n", "EPOCHS = 20\n", "STEPS = 100\n", "\n", "DIRECT = True\n", "if DIRECT:\n", " CMDARGS = [\n", " \"--model-dir=\" + MODEL_DIR,\n", " \"--epochs=\" + str(EPOCHS),\n", " \"--steps=\" + str(STEPS),\n", " \"--distribute=\" + TRAIN_STRATEGY,\n", " ]\n", "else:\n", " CMDARGS = [\n", " \"--epochs=\" + str(EPOCHS),\n", " \"--steps=\" + str(STEPS),\n", " \"--distribute=\" + TRAIN_STRATEGY,\n", " ]\n", "\n", "worker_pool_spec = [\n", " {\n", " \"replica_count\": 1,\n", " \"machine_spec\": machine_spec,\n", " \"disk_spec\": disk_spec,\n", " \"python_package_spec\": {\n", " \"executor_image_uri\": TRAIN_IMAGE,\n", " \"package_uris\": [BUCKET_NAME + \"/trainer_cifar10.tar.gz\"],\n", " \"python_module\": \"trainer.task\",\n", " \"args\": CMDARGS,\n", " },\n", " }\n", "]" ] }, { "cell_type": "markdown", "metadata": { "id": "assemble_custom_job_specification" }, "source": [ "### Assemble a job specification\n", "\n", "Now assemble the complete description for the custom job specification:\n", "\n", "- `display_name`: The human readable name you assign to this custom job.\n", "- `job_spec`: The specification for the custom job.\n", " - `worker_pool_specs`: The specification for the machine VM instances.\n", " - `base_output_directory`: This tells the service the Cloud Storage location where to save the model artifacts (when variable `DIRECT = False`). The service will then pass the location to the training script as the environment variable `AIP_MODEL_DIR`, and the path will be of the form:\n", "\n", " <output_uri_prefix>/model" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "assemble_custom_job_specification" }, "outputs": [], "source": [ "if DIRECT:\n", " job_spec = {\"worker_pool_specs\": worker_pool_spec}\n", "else:\n", " job_spec = {\n", " \"worker_pool_specs\": worker_pool_spec,\n", " \"base_output_directory\": {\"output_uri_prefix\": MODEL_DIR},\n", " }\n", "\n", "custom_job = {\"display_name\": JOB_NAME, \"job_spec\": job_spec}" ] }, { "cell_type": "markdown", "metadata": { "id": "examine_training_package" }, "source": [ "### Examine the training package\n", "\n", "#### Package layout\n", "\n", "Before you start the training, you will look at how a Python package is assembled for a custom training job. When unarchived, the package contains the following directory/file layout.\n", "\n", "- PKG-INFO\n", "- README.md\n", "- setup.cfg\n", "- setup.py\n", "- trainer\n", " - \\_\\_init\\_\\_.py\n", " - task.py\n", "\n", "The files `setup.cfg` and `setup.py` are the instructions for installing the package into the operating environment of the Docker image.\n", "\n", "The file `trainer/task.py` is the Python script for executing the custom training job. *Note*, when we referred to it in the worker pool specification, we replace the directory slash with a dot (`trainer.task`) and dropped the file suffix (`.py`).\n", "\n", "#### Package Assembly\n", "\n", "In the following cells, you will assemble the training package." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "examine_training_package" }, "outputs": [], "source": [ "# Make folder for Python training script\n", "! rm -rf custom\n", "! mkdir custom\n", "\n", "# Add package information\n", "! touch custom/README.md\n", "\n", "setup_cfg = \"[egg_info]\\n\\ntag_build =\\n\\ntag_date = 0\"\n", "! echo \"$setup_cfg\" > custom/setup.cfg\n", "\n", "setup_py = \"import setuptools\\n\\nsetuptools.setup(\\n\\n install_requires=[\\n\\n 'tensorflow_datasets==1.3.0',\\n\\n ],\\n\\n packages=setuptools.find_packages())\"\n", "! echo \"$setup_py\" > custom/setup.py\n", "\n", "pkg_info = \"Metadata-Version: 1.0\\n\\nName: CIFAR10 image classification\\n\\nVersion: 0.0.0\\n\\nSummary: Demostration training script\\n\\nHome-page: www.google.com\\n\\nAuthor: Google\\n\\nAuthor-email: aferlitsch@google.com\\n\\nLicense: Public\\n\\nDescription: Demo\\n\\nPlatform: Vertex\"\n", "! echo \"$pkg_info\" > custom/PKG-INFO\n", "\n", "# Make the training subfolder\n", "! mkdir custom/trainer\n", "! touch custom/trainer/__init__.py" ] }, { "cell_type": "markdown", "metadata": { "id": "taskpy_contents:cifar10" }, "source": [ "#### Task.py contents\n", "\n", "In the next cell, you write the contents of the training script task.py. We won't go into detail, it's just there for you to browse. In summary:\n", "\n", "- Get the directory where to save the model artifacts from the command line (`--model_dir`), and if not specified, then from the environment variable `AIP_MODEL_DIR`.\n", "- Loads CIFAR10 dataset from TF Datasets (tfds).\n", "- Builds a model using TF.Keras model API.\n", "- Compiles the model (`compile()`).\n", "- Sets a training distribution strategy according to the argument `args.distribute`.\n", "- Trains the model (`fit()`) with epochs and steps according to the arguments `args.epochs` and `args.steps`\n", "- Saves the trained model (`save(args.model_dir)`) to the specified model directory." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "taskpy_contents:cifar10" }, "outputs": [], "source": [ "%%writefile custom/trainer/task.py\n", "# Single, Mirror and Multi-Machine Distributed Training for CIFAR-10\n", "\n", "import tensorflow_datasets as tfds\n", "import tensorflow as tf\n", "from tensorflow.python.client import device_lib\n", "import argparse\n", "import os\n", "import sys\n", "tfds.disable_progress_bar()\n", "\n", "parser = argparse.ArgumentParser()\n", "parser.add_argument('--model-dir', dest='model_dir',\n", " default=os.getenv(\"AIP_MODEL_DIR\"), type=str, help='Model dir.')\n", "parser.add_argument('--lr', dest='lr',\n", " default=0.01, type=float,\n", " help='Learning rate.')\n", "parser.add_argument('--epochs', dest='epochs',\n", " default=10, type=int,\n", " help='Number of epochs.')\n", "parser.add_argument('--steps', dest='steps',\n", " default=200, type=int,\n", " help='Number of steps per epoch.')\n", "parser.add_argument('--distribute', dest='distribute', type=str, default='single',\n", " help='distributed training strategy')\n", "args = parser.parse_args()\n", "\n", "print('Python Version = {}'.format(sys.version))\n", "print('TensorFlow Version = {}'.format(tf.__version__))\n", "print('TF_CONFIG = {}'.format(os.environ.get('TF_CONFIG', 'Not found')))\n", "print('DEVICES', device_lib.list_local_devices())\n", "\n", "# Single Machine, single compute device\n", "if args.distribute == 'single':\n", " if tf.test.is_gpu_available():\n", " strategy = tf.distribute.OneDeviceStrategy(device=\"/gpu:0\")\n", " else:\n", " strategy = tf.distribute.OneDeviceStrategy(device=\"/cpu:0\")\n", "# Single Machine, multiple compute device\n", "elif args.distribute == 'mirror':\n", " strategy = tf.distribute.MirroredStrategy()\n", "# Multiple Machine, multiple compute device\n", "elif args.distribute == 'multi':\n", " strategy = tf.distribute.experimental.MultiWorkerMirroredStrategy()\n", "\n", "# Multi-worker configuration\n", "print('num_replicas_in_sync = {}'.format(strategy.num_replicas_in_sync))\n", "\n", "# Preparing dataset\n", "BUFFER_SIZE = 10000\n", "BATCH_SIZE = 64\n", "\n", "\n", "def make_datasets_unbatched():\n", "\n", " # Scaling CIFAR10 data from (0, 255] to (0., 1.]\n", " def scale(image, label):\n", " image = tf.cast(image, tf.float32)\n", " image /= 255.0\n", " return image, label\n", "\n", "\n", " datasets, info = tfds.load(name='cifar10',\n", " with_info=True,\n", " as_supervised=True)\n", " return datasets['train'].map(scale).cache().shuffle(BUFFER_SIZE).repeat()\n", "\n", "\n", "# Build the Keras model\n", "def build_and_compile_cnn_model():\n", " model = tf.keras.Sequential([\n", " tf.keras.layers.Conv2D(32, 3, activation='relu', input_shape=(32, 32, 3)),\n", " tf.keras.layers.MaxPooling2D(),\n", " tf.keras.layers.Conv2D(32, 3, activation='relu'),\n", " tf.keras.layers.MaxPooling2D(),\n", " tf.keras.layers.Flatten(),\n", " tf.keras.layers.Dense(10, activation='softmax')\n", " ])\n", " model.compile(\n", " loss=tf.keras.losses.sparse_categorical_crossentropy,\n", " optimizer=tf.keras.optimizers.SGD(learning_rate=args.lr),\n", " metrics=['accuracy'])\n", " return model\n", "\n", "\n", "# Train the model\n", "NUM_WORKERS = strategy.num_replicas_in_sync\n", "# Here the batch size scales up by number of workers since\n", "# `tf.data.Dataset.batch` expects the global batch size.\n", "GLOBAL_BATCH_SIZE = BATCH_SIZE * NUM_WORKERS\n", "train_dataset = make_datasets_unbatched().batch(GLOBAL_BATCH_SIZE)\n", "\n", "with strategy.scope():\n", " # Creation of dataset, and model building/compiling need to be within\n", " # `strategy.scope()`.\n", " model = build_and_compile_cnn_model()\n", "\n", "model.fit(x=train_dataset, epochs=args.epochs, steps_per_epoch=args.steps)\n", "model.save(args.model_dir)" ] }, { "cell_type": "markdown", "metadata": { "id": "tarball_training_script" }, "source": [ "#### Store training script on your Cloud Storage bucket\n", "\n", "Next, you package the training folder into a compressed tar ball, and then store it in your Cloud Storage bucket." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "tarball_training_script" }, "outputs": [], "source": [ "! rm -f custom.tar custom.tar.gz\n", "! tar cvf custom.tar custom\n", "! gzip custom.tar\n", "! gsutil cp custom.tar.gz $BUCKET_NAME/trainer_cifar10.tar.gz" ] }, { "cell_type": "markdown", "metadata": { "id": "train_custom_job" }, "source": [ "### Train the model\n", "\n", "\n", "Now start the training of your custom training job on Vertex. Use this helper function `create_custom_job`, which takes the following parameter:\n", "\n", "-`custom_job`: The specification for the custom job.\n", "\n", "The helper function calls job client service's `create_custom_job` method, with the following parameters:\n", "\n", "-`parent`: The Vertex location path to `Dataset`, `Model` and `Endpoint` resources.\n", "-`custom_job`: The specification for the custom job.\n", "\n", "You will display a handful of the fields returned in `response` object, with the two that are of most interest are:\n", "\n", "`response.name`: The Vertex fully qualified identifier assigned to this custom training job. You save this identifier for using in subsequent steps.\n", "\n", "`response.state`: The current state of the custom training job." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "train_custom_job" }, "outputs": [], "source": [ "def create_custom_job(custom_job):\n", " response = clients[\"job\"].create_custom_job(parent=PARENT, custom_job=custom_job)\n", " print(\"name:\", response.name)\n", " print(\"display_name:\", response.display_name)\n", " print(\"state:\", response.state)\n", " print(\"create_time:\", response.create_time)\n", " print(\"update_time:\", response.update_time)\n", " return response\n", "\n", "\n", "response = create_custom_job(custom_job)" ] }, { "cell_type": "markdown", "metadata": { "id": "job_id:response" }, "source": [ "Now get the unique identifier for the custom job you created." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "job_id:response" }, "outputs": [], "source": [ "# The full unique ID for the custom job\n", "job_id = response.name\n", "# The short numeric ID for the custom job\n", "job_short_id = job_id.split(\"/\")[-1]\n", "\n", "print(job_id)" ] }, { "cell_type": "markdown", "metadata": { "id": "get_custom_job" }, "source": [ "### Get information on a custom job\n", "\n", "Next, use this helper function `get_custom_job`, which takes the following parameter:\n", "\n", "- `name`: The Vertex fully qualified identifier for the custom job.\n", "\n", "The helper function calls the job client service's`get_custom_job` method, with the following parameter:\n", "\n", "- `name`: The Vertex fully qualified identifier for the custom job.\n", "\n", "If you recall, you got the Vertex fully qualified identifier for the custom job in the `response.name` field when you called the `create_custom_job` method, and saved the identifier in the variable `job_id`." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "get_custom_job" }, "outputs": [], "source": [ "def get_custom_job(name, silent=False):\n", " response = clients[\"job\"].get_custom_job(name=name)\n", " if silent:\n", " return response\n", "\n", " print(\"name:\", response.name)\n", " print(\"display_name:\", response.display_name)\n", " print(\"state:\", response.state)\n", " print(\"create_time:\", response.create_time)\n", " print(\"update_time:\", response.update_time)\n", " return response\n", "\n", "\n", "response = get_custom_job(job_id)" ] }, { "cell_type": "markdown", "metadata": { "id": "wait_training_complete:custom" }, "source": [ "# Deployment\n", "\n", "Training the above model may take upwards of 20 minutes time.\n", "\n", "Once your model is done training, you can calculate the actual time it took to train the model by subtracting `end_time` from `start_time`. For your model, we will need to know the location of the saved model, which the Python script saved in your local Cloud Storage bucket at `MODEL_DIR + '/saved_model.pb'`." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "wait_training_complete:custom" }, "outputs": [], "source": [ "while True:\n", " response = get_custom_job(job_id, True)\n", " if response.state != aip.JobState.JOB_STATE_SUCCEEDED:\n", " print(\"Training job has not completed:\", response.state)\n", " model_path_to_deploy = None\n", " if response.state == aip.JobState.JOB_STATE_FAILED:\n", " break\n", " else:\n", " if not DIRECT:\n", " MODEL_DIR = MODEL_DIR + \"/model\"\n", " model_path_to_deploy = MODEL_DIR\n", " print(\"Training Time:\", response.update_time - response.create_time)\n", " break\n", " time.sleep(60)\n", "\n", "print(\"model_to_deploy:\", model_path_to_deploy)" ] }, { "cell_type": "markdown", "metadata": { "id": "load_saved_model" }, "source": [ "## Load the saved model\n", "\n", "Your model is stored in a TensorFlow SavedModel format in a Cloud Storage bucket. Now load it from the Cloud Storage bucket, and then you can do some things, like evaluate the model, and do a prediction.\n", "\n", "To load, you use the TF.Keras `model.load_model()` method passing it the Cloud Storage path where the model is saved -- specified by `MODEL_DIR`." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "load_saved_model" }, "outputs": [], "source": [ "import tensorflow as tf\n", "\n", "model = tf.keras.models.load_model(MODEL_DIR)" ] }, { "cell_type": "markdown", "metadata": { "id": "evaluate_custom_model:image" }, "source": [ "## Evaluate the model\n", "\n", "Now find out how good the model is.\n", "\n", "### Load evaluation data\n", "\n", "You will load the CIFAR10 test (holdout) data from `tf.keras.datasets`, using the method `load_data()`. This will return the dataset as a tuple of two elements. The first element is the training data and the second is the test data. Each element is also a tuple of two elements: the image data, and the corresponding labels.\n", "\n", "You don't need the training data, and hence why we loaded it as `(_, _)`.\n", "\n", "Before you can run the data through evaluation, you need to preprocess it:\n", "\n", "x_test:\n", "1. Normalize (rescaling) the pixel data by dividing each pixel by 255. This will replace each single byte integer pixel with a 32-bit floating point number between 0 and 1.\n", "\n", "y_test:<br/>\n", "2. The labels are currently scalar (sparse). If you look back at the `compile()` step in the `trainer/task.py` script, you will find that it was compiled for sparse labels. So we don't need to do anything more." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "evaluate_custom_model:image,cifar10" }, "outputs": [], "source": [ "import numpy as np\n", "from tensorflow.keras.datasets import cifar10\n", "\n", "(_, _), (x_test, y_test) = cifar10.load_data()\n", "x_test = (x_test / 255.0).astype(np.float32)\n", "\n", "print(x_test.shape, y_test.shape)" ] }, { "cell_type": "markdown", "metadata": { "id": "perform_evaluation_custom" }, "source": [ "### Perform the model evaluation\n", "\n", "Now evaluate how well the model in the custom job did." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "perform_evaluation_custom" }, "outputs": [], "source": [ "model.evaluate(x_test, y_test)" ] }, { "cell_type": "markdown", "metadata": { "id": "how_serving_function_works" }, "source": [ "## Upload the model for serving\n", "\n", "Next, you will upload your TF.Keras model from the custom job to Vertex `Model` service, which will create a Vertex `Model` resource for your custom model. During upload, you need to define a serving function to convert data to the format your model expects. If you send encoded data to Vertex, your serving function ensures that the data is decoded on the model server before it is passed as input to your model.\n", "\n", "### How does the serving function work\n", "\n", "When you send a request to an online prediction server, the request is received by a HTTP server. The HTTP server extracts the prediction request from the HTTP request content body. The extracted prediction request is forwarded to the serving function. For Google pre-built prediction containers, the request content is passed to the serving function as a `tf.string`.\n", "\n", "The serving function consists of two parts:\n", "\n", "- `preprocessing function`:\n", " - Converts the input (`tf.string`) to the input shape and data type of the underlying model (dynamic graph).\n", " - Performs the same preprocessing of the data that was done during training the underlying model -- e.g., normalizing, scaling, etc.\n", "- `post-processing function`:\n", " - Converts the model output to format expected by the receiving application -- e.q., compresses the output.\n", " - Packages the output for the the receiving application -- e.g., add headings, make JSON object, etc.\n", "\n", "Both the preprocessing and post-processing functions are converted to static graphs which are fused to the model. The output from the underlying model is passed to the post-processing function. The post-processing function passes the converted/packaged output back to the HTTP server. The HTTP server returns the output as the HTTP response content.\n", "\n", "One consideration you need to consider when building serving functions for TF.Keras models is that they run as static graphs. That means, you cannot use TF graph operations that require a dynamic graph. If you do, you will get an error during the compile of the serving function which will indicate that you are using an EagerTensor which is not supported." ] }, { "cell_type": "markdown", "metadata": { "id": "serving_function_image" }, "source": [ "### Serving function for image data\n", "\n", "To pass images to the prediction service, you encode the compressed (e.g., JPEG) image bytes into base 64 -- which makes the content safe from modification while transmitting binary data over the network. Since this deployed model expects input data as raw (uncompressed) bytes, you need to ensure that the base 64 encoded data gets converted back to raw bytes before it is passed as input to the deployed model.\n", "\n", "To resolve this, define a serving function (`serving_fn`) and attach it to the model as a preprocessing step. Add a `@tf.function` decorator so the serving function is fused to the underlying model (instead of upstream on a CPU).\n", "\n", "When you send a prediction or explanation request, the content of the request is base 64 decoded into a Tensorflow string (`tf.string`), which is passed to the serving function (`serving_fn`). The serving function preprocesses the `tf.string` into raw (uncompressed) numpy bytes (`preprocess_fn`) to match the input requirements of the model:\n", "- `io.decode_jpeg`- Decompresses the JPG image which is returned as a Tensorflow tensor with three channels (RGB).\n", "- `image.convert_image_dtype` - Changes integer pixel values to float 32, and rescales pixel data between 0 and 1.\n", "- `image.resize` - Resizes the image to match the input shape for the model.\n", "\n", "At this point, the data can be passed to the model (`m_call`)." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "serving_function_image" }, "outputs": [], "source": [ "CONCRETE_INPUT = \"numpy_inputs\"\n", "\n", "\n", "def _preprocess(bytes_input):\n", " decoded = tf.io.decode_jpeg(bytes_input, channels=3)\n", " decoded = tf.image.convert_image_dtype(decoded, tf.float32)\n", " resized = tf.image.resize(decoded, size=(32, 32))\n", " return resized\n", "\n", "\n", "@tf.function(input_signature=[tf.TensorSpec([None], tf.string)])\n", "def preprocess_fn(bytes_inputs):\n", " decoded_images = tf.map_fn(\n", " _preprocess, bytes_inputs, dtype=tf.float32, back_prop=False\n", " )\n", " return {\n", " CONCRETE_INPUT: decoded_images\n", " } # User needs to make sure the key matches model's input\n", "\n", "\n", "@tf.function(input_signature=[tf.TensorSpec([None], tf.string)])\n", "def serving_fn(bytes_inputs):\n", " images = preprocess_fn(bytes_inputs)\n", " prob = m_call(**images)\n", " return prob\n", "\n", "\n", "m_call = tf.function(model.call).get_concrete_function(\n", " [tf.TensorSpec(shape=[None, 32, 32, 3], dtype=tf.float32, name=CONCRETE_INPUT)]\n", ")\n", "\n", "tf.saved_model.save(\n", " model, model_path_to_deploy, signatures={\"serving_default\": serving_fn}\n", ")" ] }, { "cell_type": "markdown", "metadata": { "id": "serving_function_signature:image" }, "source": [ "## Get the serving function signature\n", "\n", "You can get the signatures of your model's input and output layers by reloading the model into memory, and querying it for the signatures corresponding to each layer.\n", "\n", "For your purpose, you need the signature of the serving function. Why? Well, when we send our data for prediction as a HTTP request packet, the image data is base64 encoded, and our TF.Keras model takes numpy input. Your serving function will do the conversion from base64 to a numpy array.\n", "\n", "When making a prediction request, you need to route the request to the serving function instead of the model, so you need to know the input layer name of the serving function -- which you will use later when you make a prediction request." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "serving_function_signature:image" }, "outputs": [], "source": [ "loaded = tf.saved_model.load(model_path_to_deploy)\n", "\n", "serving_input = list(\n", " loaded.signatures[\"serving_default\"].structured_input_signature[1].keys()\n", ")[0]\n", "print(\"Serving function input:\", serving_input)" ] }, { "cell_type": "markdown", "metadata": { "id": "upload_the_model" }, "source": [ "### Upload the model\n", "\n", "Use this helper function `upload_model` to upload your model, stored in SavedModel format, up to the `Model` service, which will instantiate a Vertex `Model` resource instance for your model. Once you've done that, you can use the `Model` resource instance in the same way as any other Vertex `Model` resource instance, such as deploying to an `Endpoint` resource for serving predictions.\n", "\n", "The helper function takes the following parameters:\n", "\n", "- `display_name`: A human readable name for the `Endpoint` service.\n", "- `image_uri`: The container image for the model deployment.\n", "- `model_uri`: The Cloud Storage path to our SavedModel artificat. For this tutorial, this is the Cloud Storage location where the `trainer/task.py` saved the model artifacts, which we specified in the variable `MODEL_DIR`.\n", "\n", "The helper function calls the `Model` client service's method `upload_model`, which takes the following parameters:\n", "\n", "- `parent`: The Vertex location root path for `Dataset`, `Model` and `Endpoint` resources.\n", "- `model`: The specification for the Vertex `Model` resource instance.\n", "\n", "Let's now dive deeper into the Vertex model specification `model`. This is a dictionary object that consists of the following fields:\n", "\n", "- `display_name`: A human readable name for the `Model` resource.\n", "- `metadata_schema_uri`: Since your model was built without an Vertex `Dataset` resource, you will leave this blank (`''`).\n", "- `artificat_uri`: The Cloud Storage path where the model is stored in SavedModel format.\n", "- `container_spec`: This is the specification for the Docker container that will be installed on the `Endpoint` resource, from which the `Model` resource will serve predictions. Use the variable you set earlier `DEPLOY_GPU != None` to use a GPU; otherwise only a CPU is allocated.\n", "\n", "Uploading a model into a Vertex Model resource returns a long running operation, since it may take a few moments. You call response.result(), which is a synchronous call and will return when the Vertex Model resource is ready.\n", "\n", "The helper function returns the Vertex fully qualified identifier for the corresponding Vertex Model instance upload_model_response.model. You will save the identifier for subsequent steps in the variable model_to_deploy_id." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "upload_the_model" }, "outputs": [], "source": [ "IMAGE_URI = DEPLOY_IMAGE\n", "\n", "\n", "def upload_model(display_name, image_uri, model_uri):\n", " model = {\n", " \"display_name\": display_name,\n", " \"metadata_schema_uri\": \"\",\n", " \"artifact_uri\": model_uri,\n", " \"container_spec\": {\n", " \"image_uri\": image_uri,\n", " \"command\": [],\n", " \"args\": [],\n", " \"env\": [{\"name\": \"env_name\", \"value\": \"env_value\"}],\n", " \"ports\": [{\"container_port\": 8080}],\n", " \"predict_route\": \"\",\n", " \"health_route\": \"\",\n", " },\n", " }\n", " response = clients[\"model\"].upload_model(parent=PARENT, model=model)\n", " print(\"Long running operation:\", response.operation.name)\n", " upload_model_response = response.result(timeout=180)\n", " print(\"upload_model_response\")\n", " print(\" model:\", upload_model_response.model)\n", " return upload_model_response.model\n", "\n", "\n", "model_to_deploy_id = upload_model(\n", " \"cifar10-\" + TIMESTAMP, IMAGE_URI, model_path_to_deploy\n", ")" ] }, { "cell_type": "markdown", "metadata": { "id": "get_model" }, "source": [ "### Get `Model` resource information\n", "\n", "Now let's get the model information for just your model. Use this helper function `get_model`, with the following parameter:\n", "\n", "- `name`: The Vertex unique identifier for the `Model` resource.\n", "\n", "This helper function calls the Vertex `Model` client service's method `get_model`, with the following parameter:\n", "\n", "- `name`: The Vertex unique identifier for the `Model` resource." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "get_model" }, "outputs": [], "source": [ "def get_model(name):\n", " response = clients[\"model\"].get_model(name=name)\n", " print(response)\n", "\n", "\n", "get_model(model_to_deploy_id)" ] }, { "cell_type": "markdown", "metadata": { "id": "create_endpoint:custom" }, "source": [ "## Deploy the `Model` resource\n", "\n", "Now deploy the trained Vertex custom `Model` resource. This requires two steps:\n", "\n", "1. Create an `Endpoint` resource for deploying the `Model` resource to.\n", "\n", "2. Deploy the `Model` resource to the `Endpoint` resource." ] }, { "cell_type": "markdown", "metadata": { "id": "create_endpoint" }, "source": [ "### Create an `Endpoint` resource\n", "\n", "Use this helper function `create_endpoint` to create an endpoint to deploy the model to for serving predictions, with the following parameter:\n", "\n", "- `display_name`: A human readable name for the `Endpoint` resource.\n", "\n", "The helper function uses the endpoint client service's `create_endpoint` method, which takes the following parameter:\n", "\n", "- `display_name`: A human readable name for the `Endpoint` resource.\n", "\n", "Creating an `Endpoint` resource returns a long running operation, since it may take a few moments to provision the `Endpoint` resource for serving. You call `response.result()`, which is a synchronous call and will return when the Endpoint resource is ready. The helper function returns the Vertex fully qualified identifier for the `Endpoint` resource: `response.name`." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "create_endpoint" }, "outputs": [], "source": [ "ENDPOINT_NAME = \"cifar10_endpoint-\" + TIMESTAMP\n", "\n", "\n", "def create_endpoint(display_name):\n", " endpoint = {\"display_name\": display_name}\n", " response = clients[\"endpoint\"].create_endpoint(parent=PARENT, endpoint=endpoint)\n", " print(\"Long running operation:\", response.operation.name)\n", "\n", " result = response.result(timeout=300)\n", " print(\"result\")\n", " print(\" name:\", result.name)\n", " print(\" display_name:\", result.display_name)\n", " print(\" description:\", result.description)\n", " print(\" labels:\", result.labels)\n", " print(\" create_time:\", result.create_time)\n", " print(\" update_time:\", result.update_time)\n", " return result\n", "\n", "\n", "result = create_endpoint(ENDPOINT_NAME)" ] }, { "cell_type": "markdown", "metadata": { "id": "endpoint_id:result" }, "source": [ "Now get the unique identifier for the `Endpoint` resource you created." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "endpoint_id:result" }, "outputs": [], "source": [ "# The full unique ID for the endpoint\n", "endpoint_id = result.name\n", "# The short numeric ID for the endpoint\n", "endpoint_short_id = endpoint_id.split(\"/\")[-1]\n", "\n", "print(endpoint_id)" ] }, { "cell_type": "markdown", "metadata": { "id": "instance_scaling" }, "source": [ "### Compute instance scaling\n", "\n", "You have several choices on scaling the compute instances for handling your online prediction requests:\n", "\n", "- Single Instance: The online prediction requests are processed on a single compute instance.\n", " - Set the minimum (`MIN_NODES`) and maximum (`MAX_NODES`) number of compute instances to one.\n", "\n", "- Manual Scaling: The online prediction requests are split across a fixed number of compute instances that you manually specified.\n", " - Set the minimum (`MIN_NODES`) and maximum (`MAX_NODES`) number of compute instances to the same number of nodes. When a model is first deployed to the instance, the fixed number of compute instances are provisioned and online prediction requests are evenly distributed across them.\n", "\n", "- Auto Scaling: The online prediction requests are split across a scaleable number of compute instances.\n", " - Set the minimum (`MIN_NODES`) number of compute instances to provision when a model is first deployed and to de-provision, and set the maximum (`MAX_NODES) number of compute instances to provision, depending on load conditions.\n", "\n", "The minimum number of compute instances corresponds to the field `min_replica_count` and the maximum number of compute instances corresponds to the field `max_replica_count`, in your subsequent deployment request." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "instance_scaling" }, "outputs": [], "source": [ "MIN_NODES = 1\n", "MAX_NODES = 1" ] }, { "cell_type": "markdown", "metadata": { "id": "deploy_model:dedicated" }, "source": [ "### Deploy `Model` resource to the `Endpoint` resource\n", "\n", "Use this helper function `deploy_model` to deploy the `Model` resource to the `Endpoint` resource you created for serving predictions, with the following parameters:\n", "\n", "- `model`: The Vertex fully qualified model identifier of the model to upload (deploy) from the training pipeline.\n", "- `deploy_model_display_name`: A human readable name for the deployed model.\n", "- `endpoint`: The Vertex fully qualified endpoint identifier to deploy the model to.\n", "\n", "The helper function calls the `Endpoint` client service's method `deploy_model`, which takes the following parameters:\n", "\n", "- `endpoint`: The Vertex fully qualified `Endpoint` resource identifier to deploy the `Model` resource to.\n", "- `deployed_model`: The requirements specification for deploying the model.\n", "- `traffic_split`: Percent of traffic at the endpoint that goes to this model, which is specified as a dictionary of one or more key/value pairs.\n", " - If only one model, then specify as **{ \"0\": 100 }**, where \"0\" refers to this model being uploaded and 100 means 100% of the traffic.\n", " - If there are existing models on the endpoint, for which the traffic will be split, then use `model_id` to specify as **{ \"0\": percent, model_id: percent, ... }**, where `model_id` is the model id of an existing model to the deployed endpoint. The percents must add up to 100.\n", "\n", "Let's now dive deeper into the `deployed_model` parameter. This parameter is specified as a Python dictionary with the minimum required fields:\n", "\n", "- `model`: The Vertex fully qualified model identifier of the (upload) model to deploy.\n", "- `display_name`: A human readable name for the deployed model.\n", "- `disable_container_logging`: This disables logging of container events, such as execution failures (default is container logging is enabled). Container logging is typically enabled when debugging the deployment and then disabled when deployed for production.\n", "- `dedicated_resources`: This refers to how many compute instances (replicas) that are scaled for serving prediction requests.\n", " - `machine_spec`: The compute instance to provision. Use the variable you set earlier `DEPLOY_GPU != None` to use a GPU; otherwise only a CPU is allocated.\n", " - `min_replica_count`: The number of compute instances to initially provision, which you set earlier as the variable `MIN_NODES`.\n", " - `max_replica_count`: The maximum number of compute instances to scale to, which you set earlier as the variable `MAX_NODES`.\n", "\n", "#### Traffic Split\n", "\n", "Let's now dive deeper into the `traffic_split` parameter. This parameter is specified as a Python dictionary. This might at first be a tad bit confusing. Let me explain, you can deploy more than one instance of your model to an endpoint, and then set how much (percent) goes to each instance.\n", "\n", "Why would you do that? Perhaps you already have a previous version deployed in production -- let's call that v1. You got better model evaluation on v2, but you don't know for certain that it is really better until you deploy to production. So in the case of traffic split, you might want to deploy v2 to the same endpoint as v1, but it only get's say 10% of the traffic. That way, you can monitor how well it does without disrupting the majority of users -- until you make a final decision.\n", "\n", "#### Response\n", "\n", "The method returns a long running operation `response`. We will wait sychronously for the operation to complete by calling the `response.result()`, which will block until the model is deployed. If this is the first time a model is deployed to the endpoint, it may take a few additional minutes to complete provisioning of resources." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "deploy_model:dedicated" }, "outputs": [], "source": [ "DEPLOYED_NAME = \"cifar10_deployed-\" + TIMESTAMP\n", "\n", "\n", "def deploy_model(\n", " model, deployed_model_display_name, endpoint, traffic_split={\"0\": 100}\n", "):\n", "\n", " if DEPLOY_GPU:\n", " machine_spec = {\n", " \"machine_type\": DEPLOY_COMPUTE,\n", " \"accelerator_type\": DEPLOY_GPU,\n", " \"accelerator_count\": DEPLOY_NGPU,\n", " }\n", " else:\n", " machine_spec = {\n", " \"machine_type\": DEPLOY_COMPUTE,\n", " \"accelerator_count\": 0,\n", " }\n", "\n", " deployed_model = {\n", " \"model\": model,\n", " \"display_name\": deployed_model_display_name,\n", " \"dedicated_resources\": {\n", " \"min_replica_count\": MIN_NODES,\n", " \"max_replica_count\": MAX_NODES,\n", " \"machine_spec\": machine_spec,\n", " },\n", " \"disable_container_logging\": False,\n", " }\n", "\n", " response = clients[\"endpoint\"].deploy_model(\n", " endpoint=endpoint, deployed_model=deployed_model, traffic_split=traffic_split\n", " )\n", "\n", " print(\"Long running operation:\", response.operation.name)\n", " result = response.result()\n", " print(\"result\")\n", " deployed_model = result.deployed_model\n", " print(\" deployed_model\")\n", " print(\" id:\", deployed_model.id)\n", " print(\" model:\", deployed_model.model)\n", " print(\" display_name:\", deployed_model.display_name)\n", " print(\" create_time:\", deployed_model.create_time)\n", "\n", " return deployed_model.id\n", "\n", "\n", "deployed_model_id = deploy_model(model_to_deploy_id, DEPLOYED_NAME, endpoint_id)" ] }, { "cell_type": "markdown", "metadata": { "id": "make_prediction" }, "source": [ "## Make a online prediction request\n", "\n", "Now do a online prediction to your deployed model." ] }, { "cell_type": "markdown", "metadata": { "id": "get_test_item:test" }, "source": [ "### Get test item\n", "\n", "You will use an example out of the test (holdout) portion of the dataset as a test item." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "get_test_item:test" }, "outputs": [], "source": [ "test_image = x_test[0]\n", "test_label = y_test[0]\n", "print(test_image.shape)" ] }, { "cell_type": "markdown", "metadata": { "id": "prepare_test_item:test,image" }, "source": [ "### Prepare the request content\n", "You are going to send the CIFAR10 image as compressed JPG image, instead of the raw uncompressed bytes:\n", "\n", "- `cv2.imwrite`: Use openCV to write the uncompressed image to disk as a compressed JPEG image.\n", " - Denormalize the image data from \\[0,1) range back to [0,255).\n", " - Convert the 32-bit floating point values to 8-bit unsigned integers.\n", "- `tf.io.read_file`: Read the compressed JPG images back into memory as raw bytes.\n", "- `base64.b64encode`: Encode the raw bytes into a base 64 encoded string." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "prepare_test_item:test,image" }, "outputs": [], "source": [ "import base64\n", "\n", "import cv2\n", "\n", "cv2.imwrite(\"tmp.jpg\", (test_image * 255).astype(np.uint8))\n", "\n", "bytes = tf.io.read_file(\"tmp.jpg\")\n", "b64str = base64.b64encode(bytes.numpy()).decode(\"utf-8\")" ] }, { "cell_type": "markdown", "metadata": { "id": "send_prediction_request:image" }, "source": [ "### Send the prediction request\n", "\n", "Ok, now you have a test image. Use this helper function `predict_image`, which takes the following parameters:\n", "\n", "- `image`: The test image data as a numpy array.\n", "- `endpoint`: The Vertex fully qualified identifier for the `Endpoint` resource where the `Model` resource was deployed to.\n", "- `parameters_dict`: Additional parameters for serving.\n", "\n", "This function calls the prediction client service `predict` method with the following parameters:\n", "\n", "- `endpoint`: The Vertex fully qualified identifier for the `Endpoint` resource where the `Model` resource was deployed to.\n", "- `instances`: A list of instances (encoded images) to predict.\n", "- `parameters`: Additional parameters for serving.\n", "\n", "To pass the image data to the prediction service, in the previous step you encoded the bytes into base64 -- which makes the content safe from modification when transmitting binary data over the network. You need to tell the serving binary where your model is deployed to, that the content has been base64 encoded, so it will decode it on the other end in the serving binary.\n", "\n", "Each instance in the prediction request is a dictionary entry of the form:\n", "\n", " {serving_input: {'b64': content}}\n", "\n", "- `input_name`: the name of the input layer of the underlying model.\n", "- `'b64'`: A key that indicates the content is base64 encoded.\n", "- `content`: The compressed JPG image bytes as a base64 encoded string.\n", "\n", "Since the `predict()` service can take multiple images (instances), you will send your single image as a list of one image. As a final step, you package the instances list into Google's protobuf format -- which is what we pass to the `predict()` service.\n", "\n", "The `response` object returns a list, where each element in the list corresponds to the corresponding image in the request. You will see in the output for each prediction:\n", "\n", "- `predictions`: Confidence level for the prediction, between 0 and 1, for each of the classes." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "send_prediction_request:image" }, "outputs": [], "source": [ "def predict_image(image, endpoint, parameters_dict):\n", " # The format of each instance should conform to the deployed model's prediction input schema.\n", " instances_list = [{serving_input: {\"b64\": image}}]\n", " instances = [json_format.ParseDict(s, Value()) for s in instances_list]\n", "\n", " response = clients[\"prediction\"].predict(\n", " endpoint=endpoint, instances=instances, parameters=parameters_dict\n", " )\n", " print(\"response\")\n", " print(\" deployed_model_id:\", response.deployed_model_id)\n", " predictions = response.predictions\n", " print(\"predictions\")\n", " for prediction in predictions:\n", " print(\" prediction:\", prediction)\n", "\n", "\n", "predict_image(b64str, endpoint_id, None)" ] }, { "cell_type": "markdown", "metadata": { "id": "undeploy_model" }, "source": [ "## Undeploy the `Model` resource\n", "\n", "Now undeploy your `Model` resource from the serving `Endpoint` resoure. Use this helper function `undeploy_model`, which takes the following parameters:\n", "\n", "- `deployed_model_id`: The model deployment identifier returned by the endpoint service when the `Model` resource was deployed to.\n", "- `endpoint`: The Vertex fully qualified identifier for the `Endpoint` resource where the `Model` is deployed to.\n", "\n", "This function calls the endpoint client service's method `undeploy_model`, with the following parameters:\n", "\n", "- `deployed_model_id`: The model deployment identifier returned by the endpoint service when the `Model` resource was deployed.\n", "- `endpoint`: The Vertex fully qualified identifier for the `Endpoint` resource where the `Model` resource is deployed.\n", "- `traffic_split`: How to split traffic among the remaining deployed models on the `Endpoint` resource.\n", "\n", "Since this is the only deployed model on the `Endpoint` resource, you simply can leave `traffic_split` empty by setting it to {}." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "undeploy_model" }, "outputs": [], "source": [ "def undeploy_model(deployed_model_id, endpoint):\n", " response = clients[\"endpoint\"].undeploy_model(\n", " endpoint=endpoint, deployed_model_id=deployed_model_id, traffic_split={}\n", " )\n", " print(response)\n", "\n", "\n", "undeploy_model(deployed_model_id, endpoint_id)" ] }, { "cell_type": "markdown", "metadata": { "id": "cleanup" }, "source": [ "# Cleaning up\n", "\n", "To clean up all GCP resources used in this project, you can [delete the GCP\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:\n", "\n", "- Dataset\n", "- Pipeline\n", "- Model\n", "- Endpoint\n", "- Batch Job\n", "- Custom Job\n", "- Hyperparameter Tuning Job\n", "- Cloud Storage Bucket" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "cleanup" }, "outputs": [], "source": [ "delete_dataset = True\n", "delete_pipeline = True\n", "delete_model = True\n", "delete_endpoint = True\n", "delete_batchjob = True\n", "delete_customjob = True\n", "delete_hptjob = True\n", "delete_bucket = True\n", "\n", "# Delete the dataset using the Vertex fully qualified identifier for the dataset\n", "try:\n", " if delete_dataset and \"dataset_id\" in globals():\n", " clients[\"dataset\"].delete_dataset(name=dataset_id)\n", "except Exception as e:\n", " print(e)\n", "\n", "# Delete the training pipeline using the Vertex fully qualified identifier for the pipeline\n", "try:\n", " if delete_pipeline and \"pipeline_id\" in globals():\n", " clients[\"pipeline\"].delete_training_pipeline(name=pipeline_id)\n", "except Exception as e:\n", " print(e)\n", "\n", "# Delete the model using the Vertex fully qualified identifier for the model\n", "try:\n", " if delete_model and \"model_to_deploy_id\" in globals():\n", " clients[\"model\"].delete_model(name=model_to_deploy_id)\n", "except Exception as e:\n", " print(e)\n", "\n", "# Delete the endpoint using the Vertex fully qualified identifier for the endpoint\n", "try:\n", " if delete_endpoint and \"endpoint_id\" in globals():\n", " clients[\"endpoint\"].delete_endpoint(name=endpoint_id)\n", "except Exception as e:\n", " print(e)\n", "\n", "# Delete the batch job using the Vertex fully qualified identifier for the batch job\n", "try:\n", " if delete_batchjob and \"batch_job_id\" in globals():\n", " clients[\"job\"].delete_batch_prediction_job(name=batch_job_id)\n", "except Exception as e:\n", " print(e)\n", "\n", "# Delete the custom job using the Vertex fully qualified identifier for the custom job\n", "try:\n", " if delete_customjob and \"job_id\" in globals():\n", " clients[\"job\"].delete_custom_job(name=job_id)\n", "except Exception as e:\n", " print(e)\n", "\n", "# Delete the hyperparameter tuning job using the Vertex fully qualified identifier for the hyperparameter tuning job\n", "try:\n", " if delete_hptjob and \"hpt_job_id\" in globals():\n", " clients[\"job\"].delete_hyperparameter_tuning_job(name=hpt_job_id)\n", "except Exception as e:\n", " print(e)\n", "\n", "if delete_bucket and \"BUCKET_NAME\" in globals():\n", " ! gsutil rm -r $BUCKET_NAME" ] } ], "metadata": { "colab": { "name": "showcase_custom_image_classification_online.ipynb", "toc_visible": true }, "kernelspec": { "display_name": "Python 3", "name": "python3" } }, "nbformat": 4, "nbformat_minor": 0 }