notebooks/community/gapic/automl/showcase_automl_tabular_classification_online.ipynb (1,664 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: AutoML tabular 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/automl/showcase_automl_tabular_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/automl/showcase_automl_tabular_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:automl" }, "source": [ "## Overview\n", "\n", "\n", "This tutorial demonstrates how to use the Vertex client library for Python to create tabular classification models and do online prediction using Google Cloud's [AutoML](https://cloud.google.com/vertex-ai/docs/start/automl-users)." ] }, { "cell_type": "markdown", "metadata": { "id": "dataset:iris,lcn" }, "source": [ "### Dataset\n", "\n", "The dataset used for this tutorial is the [Iris dataset](https://www.tensorflow.org/datasets/catalog/iris) from [TensorFlow Datasets](https://www.tensorflow.org/datasets/catalog/overview). This dataset does not require any feature engineering. The version of the dataset you will use in this tutorial is stored in a public Cloud Storage bucket. The trained model predicts the type of Iris flower species from a class of three species: setosa, virginica, or versicolor." ] }, { "cell_type": "markdown", "metadata": { "id": "objective:automl,training,online_prediction" }, "source": [ "### Objective\n", "\n", "In this tutorial, you create an AutoML tabular classification model and deploy for online prediction from a Python script using the Vertex client library. You can alternatively create and deploy models using the `gcloud` command-line tool or online using the Google Cloud Console.\n", "\n", "The steps performed include:\n", "\n", "- Create a Vertex `Dataset` resource.\n", "- Train the model.\n", "- View the model evaluation.\n", "- Deploy the `Model` resource to a serving `Endpoint` resource.\n", "- Make a prediction.\n", "- Undeploy the `Model`." ] }, { "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": "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.json_format import MessageToJson, ParseDict\n", "from google.protobuf.struct_pb2 import Struct, 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": "automl_constants" }, "source": [ "#### AutoML constants\n", "\n", "Set constants unique to AutoML datasets and training:\n", "\n", "- Dataset Schemas: Tells the `Dataset` resource service which type of dataset it is.\n", "- Data Labeling (Annotations) Schemas: Tells the `Dataset` resource service how the data is labeled (annotated).\n", "- Dataset Training Schemas: Tells the `Pipeline` resource service the task (e.g., classification) to train the model for." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "automl_constants:lcn" }, "outputs": [], "source": [ "# Tabular Dataset type\n", "DATA_SCHEMA = \"gs://google-cloud-aiplatform/schema/dataset/metadata/tables_1.0.0.yaml\"\n", "# Tabular Labeling type\n", "LABEL_SCHEMA = (\n", " \"gs://google-cloud-aiplatform/schema/dataset/ioformat/table_io_format_1.0.0.yaml\"\n", ")\n", "# Tabular Training task\n", "TRAINING_SCHEMA = \"gs://google-cloud-aiplatform/schema/trainingjob/definition/automl_tables_1.0.0.yaml\"" ] }, { "cell_type": "markdown", "metadata": { "id": "accelerators:prediction" }, "source": [ "#### Hardware Accelerators\n", "\n", "Set the hardware accelerators (e.g., GPU), if any, for prediction.\n", "\n", "Set the variable `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", "Otherwise specify `(None, None)` to use a container image to run on a CPU." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "accelerators:prediction" }, "outputs": [], "source": [ "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 = (aip.AcceleratorType.NVIDIA_TESLA_K80, 1)" ] }, { "cell_type": "markdown", "metadata": { "id": "container:automl" }, "source": [ "#### Container (Docker) image\n", "\n", "For AutoML batch prediction, the container image for the serving binary is pre-determined by the Vertex prediction service. More specifically, the service will pick the appropriate container for the model depending on the hardware accelerator you selected." ] }, { "cell_type": "markdown", "metadata": { "id": "machine:prediction" }, "source": [ "#### Machine Type\n", "\n", "Next, set the machine type to use for prediction.\n", "\n", "- Set the variable `DEPLOY_COMPUTE` to configure the compute resources for the VM you will use for 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: 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:prediction" }, "outputs": [], "source": [ "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:automl" }, "source": [ "# Tutorial\n", "\n", "Now you are ready to start creating your own AutoML tabular classification model." ] }, { "cell_type": "markdown", "metadata": { "id": "clients:automl,online_prediction" }, "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", "- Dataset Service for `Dataset` resources.\n", "- Model Service for `Model` resources.\n", "- Pipeline Service for training.\n", "- Endpoint Service for deployment.\n", "- Prediction Service for serving." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "clients:automl,online_prediction" }, "outputs": [], "source": [ "# client options same for all services\n", "client_options = {\"api_endpoint\": API_ENDPOINT}\n", "\n", "\n", "def create_dataset_client():\n", " client = aip.DatasetServiceClient(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_pipeline_client():\n", " client = aip.PipelineServiceClient(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[\"dataset\"] = create_dataset_client()\n", "clients[\"model\"] = create_model_client()\n", "clients[\"pipeline\"] = create_pipeline_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": "dataset:tabular" }, "source": [ "## Dataset\n", "\n", "Now that your clients are ready, your first step is to create a `Dataset` resource instance. This step differs from Vision, Video and Language. For those products, after the `Dataset` resource is created, one then separately imports the data, using the `import_data` method.\n", "\n", "For tabular, importing of the data is deferred until the training pipeline starts training the model. What do we do different? Well, first you won't be calling the `import_data` method. Instead, when you create the dataset instance you specify the Cloud Storage location of the CSV file or BigQuery location of the data table, which contains your tabular data as part of the `Dataset` resource's metadata.\n", "\n", "#### Cloud Storage\n", "\n", "`metadata = {\"input_config\": {\"gcs_source\": {\"uri\": [gcs_uri]}}}`\n", "\n", "The format for a Cloud Storage path is:\n", "\n", " gs://[bucket_name]/[folder(s)/[file]\n", "\n", "#### BigQuery\n", "\n", "`metadata = {\"input_config\": {\"bigquery_source\": {\"uri\": [gcs_uri]}}}`\n", "\n", "The format for a BigQuery path is:\n", "\n", " bq://[collection].[dataset].[table]\n", "\n", "Note that the `uri` field is a list, whereby you can input multiple CSV files or BigQuery tables when your data is split across files." ] }, { "cell_type": "markdown", "metadata": { "id": "data_preparation:tabular,u_dataset" }, "source": [ "### Data preparation\n", "\n", "The Vertex `Dataset` resource for tabular has a couple of requirements for your tabular data.\n", "\n", "- Must be in a CSV file or a BigQuery query." ] }, { "cell_type": "markdown", "metadata": { "id": "data_import_format:lcn,u_dataset,csv" }, "source": [ "#### CSV\n", "\n", "For tabular classification, the CSV file has a few requirements:\n", "\n", "- The first row must be the heading -- note how this is different from Vision, Video and Language where the requirement is no heading.\n", "- All but one column are features.\n", "- One column is the label, which you will specify when you subsequently create the training pipeline." ] }, { "cell_type": "markdown", "metadata": { "id": "import_file:u_dataset,csv" }, "source": [ "#### Location of Cloud Storage training data.\n", "\n", "Now set the variable `IMPORT_FILE` to the location of the CSV index file in Cloud Storage." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "import_file:iris,csv,lcn" }, "outputs": [], "source": [ "IMPORT_FILE = \"gs://cloud-samples-data/tables/iris_1000.csv\"" ] }, { "cell_type": "markdown", "metadata": { "id": "quick_peek:tabular" }, "source": [ "#### Quick peek at your data\n", "\n", "You will use a version of the Iris dataset that is stored in a public Cloud Storage bucket, using a CSV index file.\n", "\n", "Start by doing a quick peek at the data. You count the number of examples by counting the number of rows in the CSV index file (`wc -l`) and then peek at the first few rows.\n", "\n", "You also need for training to know the heading name of the label column, which is save as `label_column`. For this dataset, it is the last column in the CSV file." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "quick_peek:tabular" }, "outputs": [], "source": [ "count = ! gsutil cat $IMPORT_FILE | wc -l\n", "print(\"Number of Examples\", int(count[0]))\n", "\n", "print(\"First 10 rows\")\n", "! gsutil cat $IMPORT_FILE | head\n", "\n", "heading = ! gsutil cat $IMPORT_FILE | head -n1\n", "label_column = str(heading).split(\",\")[-1].split(\"'\")[0]\n", "print(\"Label Column Name\", label_column)\n", "if label_column is None:\n", " raise Exception(\"label column missing\")" ] }, { "cell_type": "markdown", "metadata": { "id": "create_aip_dataset:tabular" }, "source": [ "## Dataset\n", "\n", "Now that your clients are ready, your first step in training a model is to create a managed dataset instance, and then upload your labeled data to it.\n", "\n", "### Create `Dataset` resource instance\n", "\n", "Use the helper function `create_dataset` to create the instance of a `Dataset` resource. This function does the following:\n", "\n", "1. Uses the dataset client service.\n", "2. Creates an Vertex `Dataset` resource (`aip.Dataset`), with the following parameters:\n", " - `display_name`: The human-readable name you choose to give it.\n", " - `metadata_schema_uri`: The schema for the dataset type.\n", " - `metadata`: The Cloud Storage or BigQuery location of the tabular data.\n", "3. Calls the client dataset service method `create_dataset`, with the following parameters:\n", " - `parent`: The Vertex location root path for your `Database`, `Model` and `Endpoint` resources.\n", " - `dataset`: The Vertex dataset object instance you created.\n", "4. The method returns an `operation` object.\n", "\n", "An `operation` object is how Vertex handles asynchronous calls for long running operations. While this step usually goes fast, when you first use it in your project, there is a longer delay due to provisioning.\n", "\n", "You can use the `operation` object to get status on the operation (e.g., create `Dataset` resource) or to cancel the operation, by invoking an operation method:\n", "\n", "| Method | Description |\n", "| ----------- | ----------- |\n", "| result() | Waits for the operation to complete and returns a result object in JSON format. |\n", "| running() | Returns True/False on whether the operation is still running. |\n", "| done() | Returns True/False on whether the operation is completed. |\n", "| canceled() | Returns True/False on whether the operation was canceled. |\n", "| cancel() | Cancels the operation (this may take up to 30 seconds). |" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "create_aip_dataset:tabular" }, "outputs": [], "source": [ "TIMEOUT = 90\n", "\n", "\n", "def create_dataset(name, schema, src_uri=None, labels=None, timeout=TIMEOUT):\n", " start_time = time.time()\n", " try:\n", " if src_uri.startswith(\"gs://\"):\n", " metadata = {\"input_config\": {\"gcs_source\": {\"uri\": [src_uri]}}}\n", " elif src_uri.startswith(\"bq://\"):\n", " metadata = {\"input_config\": {\"bigquery_source\": {\"uri\": [src_uri]}}}\n", " dataset = aip.Dataset(\n", " display_name=name,\n", " metadata_schema_uri=schema,\n", " labels=labels,\n", " metadata=json_format.ParseDict(metadata, Value()),\n", " )\n", "\n", " operation = clients[\"dataset\"].create_dataset(parent=PARENT, dataset=dataset)\n", " print(\"Long running operation:\", operation.operation.name)\n", " result = operation.result(timeout=TIMEOUT)\n", " print(\"time:\", time.time() - start_time)\n", " print(\"response\")\n", " print(\" name:\", result.name)\n", " print(\" display_name:\", result.display_name)\n", " print(\" metadata_schema_uri:\", result.metadata_schema_uri)\n", " print(\" metadata:\", dict(result.metadata))\n", " print(\" create_time:\", result.create_time)\n", " print(\" update_time:\", result.update_time)\n", " print(\" etag:\", result.etag)\n", " print(\" labels:\", dict(result.labels))\n", " return result\n", " except Exception as e:\n", " print(\"exception:\", e)\n", " return None\n", "\n", "\n", "result = create_dataset(\"iris-\" + TIMESTAMP, DATA_SCHEMA, src_uri=IMPORT_FILE)" ] }, { "cell_type": "markdown", "metadata": { "id": "dataset_id:result" }, "source": [ "Now save the unique dataset identifier for the `Dataset` resource instance you created." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "dataset_id:result" }, "outputs": [], "source": [ "# The full unique ID for the dataset\n", "dataset_id = result.name\n", "# The short numeric ID for the dataset\n", "dataset_short_id = dataset_id.split(\"/\")[-1]\n", "\n", "print(dataset_id)" ] }, { "cell_type": "markdown", "metadata": { "id": "train_automl_model" }, "source": [ "## Train the model\n", "\n", "Now train an AutoML tabular classification model using your Vertex `Dataset` resource. To train the model, do the following steps:\n", "\n", "1. Create an Vertex training pipeline for the `Dataset` resource.\n", "2. Execute the pipeline to start the training." ] }, { "cell_type": "markdown", "metadata": { "id": "create_pipeline:automl" }, "source": [ "### Create a training pipeline\n", "\n", "You may ask, what do we use a pipeline for? You typically use pipelines when the job (such as training) has multiple steps, generally in sequential order: do step A, do step B, etc. By putting the steps into a pipeline, we gain the benefits of:\n", "\n", "1. Being reusable for subsequent training jobs.\n", "2. Can be containerized and ran as a batch job.\n", "3. Can be distributed.\n", "4. All the steps are associated with the same pipeline job for tracking progress.\n", "\n", "Use this helper function `create_pipeline`, which takes the following parameters:\n", "\n", "- `pipeline_name`: A human readable name for the pipeline job.\n", "- `model_name`: A human readable name for the model.\n", "- `dataset`: The Vertex fully qualified dataset identifier.\n", "- `schema`: The dataset labeling (annotation) training schema.\n", "- `task`: A dictionary describing the requirements for the training job.\n", "\n", "The helper function calls the `Pipeline` client service'smethod `create_pipeline`, which takes the following parameters:\n", "\n", "- `parent`: The Vertex location root path for your `Dataset`, `Model` and `Endpoint` resources.\n", "- `training_pipeline`: the full specification for the pipeline training job.\n", "\n", "Let's look now deeper into the *minimal* requirements for constructing a `training_pipeline` specification:\n", "\n", "- `display_name`: A human readable name for the pipeline job.\n", "- `training_task_definition`: The dataset labeling (annotation) training schema.\n", "- `training_task_inputs`: A dictionary describing the requirements for the training job.\n", "- `model_to_upload`: A human readable name for the model.\n", "- `input_data_config`: The dataset specification.\n", " - `dataset_id`: The Vertex dataset identifier only (non-fully qualified) -- this is the last part of the fully-qualified identifier.\n", " - `fraction_split`: If specified, the percentages of the dataset to use for training, test and validation. Otherwise, the percentages are automatically selected by AutoML." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "create_pipeline:automl" }, "outputs": [], "source": [ "def create_pipeline(pipeline_name, model_name, dataset, schema, task):\n", "\n", " dataset_id = dataset.split(\"/\")[-1]\n", "\n", " input_config = {\n", " \"dataset_id\": dataset_id,\n", " \"fraction_split\": {\n", " \"training_fraction\": 0.8,\n", " \"validation_fraction\": 0.1,\n", " \"test_fraction\": 0.1,\n", " },\n", " }\n", "\n", " training_pipeline = {\n", " \"display_name\": pipeline_name,\n", " \"training_task_definition\": schema,\n", " \"training_task_inputs\": task,\n", " \"input_data_config\": input_config,\n", " \"model_to_upload\": {\"display_name\": model_name},\n", " }\n", "\n", " try:\n", " pipeline = clients[\"pipeline\"].create_training_pipeline(\n", " parent=PARENT, training_pipeline=training_pipeline\n", " )\n", " print(pipeline)\n", " except Exception as e:\n", " print(\"exception:\", e)\n", " return None\n", " return pipeline" ] }, { "cell_type": "markdown", "metadata": { "id": "task_requirements:automl,tabular" }, "source": [ "### Construct the task requirements\n", "\n", "Next, construct the task requirements. Unlike other parameters which take a Python (JSON-like) dictionary, the `task` field takes a Google protobuf Struct, which is very similar to a Python dictionary. Use the `json_format.ParseDict` method for the conversion.\n", "\n", "The minimal fields you need to specify are:\n", "\n", "- `prediction_type`: Whether we are doing \"classification\" or \"regression\".\n", "- `target_column`: The CSV heading column name for the column we want to predict (i.e., the label).\n", "- `train_budget_milli_node_hours`: The maximum time to budget (billed) for training the model, where 1000 = 1 hour.\n", "- `disable_early_stopping`: Whether True/False to let AutoML use its judgement to stop training early or train for the entire budget.\n", "- `transformations`: Specifies the feature engineering for each feature column.\n", "\n", "For `transformations`, the list must have an entry for each column. The outer key field indicates the type of feature engineering for the corresponding column. In this tutorial, you set it to `\"auto\"` to tell AutoML to automatically determine it.\n", "\n", "Finally, create the pipeline by calling the helper function `create_pipeline`, which returns an instance of a training pipeline object." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "task_transformations:automl,tabular,iris" }, "outputs": [], "source": [ "TRANSFORMATIONS = [\n", " {\"auto\": {\"column_name\": \"sepal_width\"}},\n", " {\"auto\": {\"column_name\": \"sepal_length\"}},\n", " {\"auto\": {\"column_name\": \"petal_length\"}},\n", " {\"auto\": {\"column_name\": \"petal_width\"}},\n", "]" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "task_requirements:automl,tabular,transformations" }, "outputs": [], "source": [ "PIPE_NAME = \"iris_pipe-\" + TIMESTAMP\n", "MODEL_NAME = \"iris_model-\" + TIMESTAMP\n", "\n", "task = Value(\n", " struct_value=Struct(\n", " fields={\n", " \"target_column\": Value(string_value=label_column),\n", " \"prediction_type\": Value(string_value=\"classification\"),\n", " \"train_budget_milli_node_hours\": Value(number_value=1000),\n", " \"disable_early_stopping\": Value(bool_value=False),\n", " \"transformations\": json_format.ParseDict(TRANSFORMATIONS, Value()),\n", " }\n", " )\n", ")\n", "\n", "response = create_pipeline(PIPE_NAME, MODEL_NAME, dataset_id, TRAINING_SCHEMA, task)" ] }, { "cell_type": "markdown", "metadata": { "id": "pipeline_id:response" }, "source": [ "Now save the unique identifier of the training pipeline you created." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "pipeline_id:response" }, "outputs": [], "source": [ "# The full unique ID for the pipeline\n", "pipeline_id = response.name\n", "# The short numeric ID for the pipeline\n", "pipeline_short_id = pipeline_id.split(\"/\")[-1]\n", "\n", "print(pipeline_id)" ] }, { "cell_type": "markdown", "metadata": { "id": "get_training_pipeline" }, "source": [ "### Get information on a training pipeline\n", "\n", "Now get pipeline information for just this training pipeline instance. The helper function gets the job information for just this job by calling the the job client service's `get_training_pipeline` method, with the following parameter:\n", "\n", "- `name`: The Vertex fully qualified pipeline identifier.\n", "\n", "When the model is done training, the pipeline state will be `PIPELINE_STATE_SUCCEEDED`." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "get_training_pipeline" }, "outputs": [], "source": [ "def get_training_pipeline(name, silent=False):\n", " response = clients[\"pipeline\"].get_training_pipeline(name=name)\n", " if silent:\n", " return response\n", "\n", " print(\"pipeline\")\n", " print(\" name:\", response.name)\n", " print(\" display_name:\", response.display_name)\n", " print(\" state:\", response.state)\n", " print(\" training_task_definition:\", response.training_task_definition)\n", " print(\" training_task_inputs:\", dict(response.training_task_inputs))\n", " print(\" create_time:\", response.create_time)\n", " print(\" start_time:\", response.start_time)\n", " print(\" end_time:\", response.end_time)\n", " print(\" update_time:\", response.update_time)\n", " print(\" labels:\", dict(response.labels))\n", " return response\n", "\n", "\n", "response = get_training_pipeline(pipeline_id)" ] }, { "cell_type": "markdown", "metadata": { "id": "wait_training_complete" }, "source": [ "# Deployment\n", "\n", "Training the above model may take upwards of 30 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, you will need to know the fully qualified Vertex Model resource identifier, which the pipeline service assigned to it. You can get this from the returned pipeline instance as the field `model_to_deploy.name`." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "wait_training_complete" }, "outputs": [], "source": [ "while True:\n", " response = get_training_pipeline(pipeline_id, True)\n", " if response.state != aip.PipelineState.PIPELINE_STATE_SUCCEEDED:\n", " print(\"Training job has not completed:\", response.state)\n", " model_to_deploy_id = None\n", " if response.state == aip.PipelineState.PIPELINE_STATE_FAILED:\n", " raise Exception(\"Training Job Failed\")\n", " else:\n", " model_to_deploy = response.model_to_upload\n", " model_to_deploy_id = model_to_deploy.name\n", " print(\"Training Time:\", response.end_time - response.start_time)\n", " break\n", " time.sleep(60)\n", "\n", "print(\"model to deploy:\", model_to_deploy_id)" ] }, { "cell_type": "markdown", "metadata": { "id": "model_information" }, "source": [ "## Model information\n", "\n", "Now that your model is trained, you can get some information on your model." ] }, { "cell_type": "markdown", "metadata": { "id": "evaluate_the_model:automl" }, "source": [ "## Evaluate the Model resource\n", "\n", "Now find out how good the model service believes your model is. As part of training, some portion of the dataset was set aside as the test (holdout) data, which is used by the pipeline service to evaluate the model." ] }, { "cell_type": "markdown", "metadata": { "id": "list_model_evaluations:automl,lcn" }, "source": [ "### List evaluations for all slices\n", "\n", "Use this helper function `list_model_evaluations`, which takes the following parameter:\n", "\n", "- `name`: The Vertex fully qualified model identifier for the `Model` resource.\n", "\n", "This helper function uses the model client service's `list_model_evaluations` method, which takes the same parameter. The response object from the call is a list, where each element is an evaluation metric.\n", "\n", "For each evaluation (you probably only have one) we then print all the key names for each metric in the evaluation, and for a small set (`logLoss` and `auPrc`) you will print the result." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "list_model_evaluations:automl,lcn" }, "outputs": [], "source": [ "def list_model_evaluations(name):\n", " response = clients[\"model\"].list_model_evaluations(parent=name)\n", " for evaluation in response:\n", " print(\"model_evaluation\")\n", " print(\" name:\", evaluation.name)\n", " print(\" metrics_schema_uri:\", evaluation.metrics_schema_uri)\n", " metrics = json_format.MessageToDict(evaluation._pb.metrics)\n", " for metric in metrics.keys():\n", " print(metric)\n", " print(\"logloss\", metrics[\"logLoss\"])\n", " print(\"auPrc\", metrics[\"auPrc\"])\n", "\n", " return evaluation.name\n", "\n", "\n", "last_evaluation = list_model_evaluations(model_to_deploy_id)" ] }, { "cell_type": "markdown", "metadata": { "id": "create_endpoint:automl" }, "source": [ "## Deploy the `Model` resource\n", "\n", "Now deploy the trained Vertex `Model` resource you created with AutoML. 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 = \"iris_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 = \"iris_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": "make_test_item:automl,online_prediction" }, "source": [ "### Make test item\n", "\n", "You will use synthetic data as a test data item. Don't be concerned that we are using synthetic data -- we just want to demonstrate how to make a prediction." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "make_test_item:automl,tabular,iris" }, "outputs": [], "source": [ "INSTANCE = {\n", " \"petal_length\": \"1.4\",\n", " \"petal_width\": \"1.3\",\n", " \"sepal_length\": \"5.1\",\n", " \"sepal_width\": \"2.8\",\n", "}" ] }, { "cell_type": "markdown", "metadata": { "id": "predict_item:automl,lcn" }, "source": [ "### Make a prediction\n", "\n", "Now you have a test item. Use this helper function `predict_item`, which takes the following parameters:\n", "\n", "- `filename`: The Cloud Storage path to the test item.\n", "- `endpoint`: The Vertex fully qualified identifier for the `Endpoint` resource where the `Model` resource was deployed.\n", "- `parameters_dict`: Additional filtering parameters for serving prediction results.\n", "\n", "This function calls the prediction client service's `predict` method with the following parameters:\n", "\n", "- `endpoint`: The Vertex fully qualified identifier for the `Endpoint` resource where the `Model` resource was deployed.\n", "- `instances`: A list of instances (data items) to predict.\n", "- `parameters`: Additional filtering parameters for serving prediction results. *Note*, tabular models do not support additional parameters.\n", "\n", "#### Request\n", "\n", "The format of each instance is, where values must be specified as a string:\n", "\n", " { 'feature_1': 'value_1', 'feature_2': 'value_2', ... }\n", "\n", "Since the `predict()` method can take multiple items (instances), you send your single test item as a list of one test item. As a final step, you package the instances list into Google's protobuf format -- which is what we pass to the `predict()` method.\n", "\n", "#### Response\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 -- in this case there is just one:\n", "\n", "- `confidences`: Confidence level in the prediction.\n", "- `displayNames`: The predicted label." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "predict_item:automl,lcn" }, "outputs": [], "source": [ "def predict_item(data, endpoint, parameters_dict):\n", " parameters = json_format.ParseDict(parameters_dict, Value())\n", "\n", " # The format of each instance should conform to the deployed model's prediction input schema.\n", " instances_list = [data]\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\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:\", dict(prediction))\n", "\n", "\n", "predict_item(INSTANCE, 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_automl_tabular_classification_online.ipynb", "toc_visible": true }, "kernelspec": { "display_name": "Python 3", "name": "python3" } }, "nbformat": 4, "nbformat_minor": 0 }