Jump to Content
AI & Machine Learning

Use R to train and deploy machine learning models on Vertex AI

July 28, 2022
Fabian Hirschmann

Machine Learning Specialist

Justin Marciszewski

Machine Learning Specialist

R is one of the most widely used programming languages for statistical computing and machine learning. Many data scientists love it, especially for the rich world of packages from tidyverse, an opinionated collection of R packages for data science. Besides the tidyverse, there are over 18,000 open-source packages on CRAN, the package repository for R. RStudio, available as desktop version or on the Google Cloud Marketplace, is a popular Integrated Development Environment (IDE) used by data professionals for visualization and machine learning model development.

Once a model has been built successfully, a recurring question among data scientists is: "How do I deploy models written in the R language to production in a scalable, reliable and low-maintenance way?"

In this blog post, you will walk through how to use Google Vertex AI to train and deploy  enterprise-grade machine learning models built with R. 

Overview

Managing machine learning models on Vertex AI can be done in a variety of ways, including using the User Interface of the Google Cloud Console, API calls, or the Vertex AI SDK for Python

Since many R users prefer to interact with Vertex AI from RStudio programmatically, you will interact with Vertex AI through the Vertex AI SDK via the reticulate package. 

Vertex AI provides pre-built Docker containers for model training and serving predictions for models written in tensorflow, scikit-learn and xgboost. For R, you build a container yourself, derived from Google Cloud Deep Learning Containers for R.

Models on Vertex AI can be created in two ways:

  1. Train a model locally and import it as a custom model into Vertex AI Model Registry, from where it can be deployed to an endpoint for serving predictions.

  2. Create a TrainingPipeline that runs a CustomJob and imports the resulting artifacts as a Model.

In this blog post, you will use the second method and train a model directly in Vertex AI since this allows us to automate the model creation process at a later stage while also supporting distributed hyperparameter optimization.

The process of creating and managing R models in Vertex AI comprises the following steps:

  1. Enable Google Cloud Platform (GCP) APIs and set up the local environment

  2. Create custom R scripts for training and serving

  3. Create a Docker container that supports training and serving R models with Cloud Build and Container Registry 

  4. Train a model using Vertex AI Training and upload the artifact to Google Cloud Storage

  5. Create a model endpoint on Vertex AI Prediction Endpoint and deploy the model to serve online prediction requests

  6. Make online prediction

https://storage.googleapis.com/gweb-cloudblog-publish/images/1_R_to_train.max-800x800.png

Dataset

To showcase this process, you train a simple Random Forest model to predict housing prices on the California housing data set. The data contains information from the 1990 California census. The data set is publicly available from Google Cloud Storage at gs://cloud-samples-data/ai-platform-unified/datasets/tabular/california-housing-tabular-regression.csv

The Random Forest regressor model will predict a median housing price, given a longitude and latitude along with data from the corresponding census block group. A block group is the smallest geographical unit for which the U.S. Census Bureau publishes sample data (a block group typically has a population of 600 to 3,000 people).

Environment Setup

This blog post assumes that you are either using Vertex AI Workbench with an R kernel or RStudio. Your environment should include the following requirements:

  • The Google Cloud SDK

  • Git

  • R

  • Python 3

  • Virtualenv

To execute shell commands, define a helper function:

Loading...

You should also install a few R packages and update the SDK for Vertex AI:

Loading...

Next, you define variables to support the training and deployment process, namely:

  • PROJECT_ID: Your Google Cloud Platform Project ID

  • REGION: Currently, the regions us-central1, europe-west4, and asia-east1 are supported for Vertex AI; it is recommended that you choose the region closest to you

  • BUCKET_URI: The staging bucket where all the data associated with your dataset and model resources are stored

  • DOCKER_REPO: The Docker repository name to store container artifacts

  • IMAGE_NAME: The name of the container image

  • IMAGE_TAG: The image tag that Vertex AI will use

  • IMAGE_URI: The complete URI of the container image

Loading...

When you initialize the Vertex AI SDK for Python, you specify a Cloud Storage staging bucket. The staging bucket is where all the data associated with your dataset and model resources are retained across sessions.

Loading...

Next, you import and initialize the reticulate R package to interface with the Vertex AI SDK, which is written in Python.

Loading...

Create Docker container image for training and serving R models

The docker file for your custom container is built on top of the Deep Learning container -- the same container that is also used for Vertex AI Workbench. In addition, you add two R scripts for model training and serving, respectively.

Before creating such a container, you enable Artifact Registry and configure Docker to authenticate requests to it in your region.

Loading...

Next, create a Dockerfile.

Loading...

Next, create the file train.R, which is used to train your R model. The script trains a randomForest model on the California Housing dataset. Vertex AI sets environment variables that you can utilize, and since this script uses a Vertex AI managed dataset, data splits are performed by Vertex AI and the script receives environment variables pointing to the training, test, and validation sets. The trained model artifacts are then stored in your Cloud Storage bucket.

Loading...

Next, create the file serve.R, which is used for serving your R model. The script downloads the model artifact from Cloud Storage, loads the model artifacts, and listens for prediction requests on port 8080. You have several environment variables for the prediction service at your disposal, including:

  • AIP_HEALTH_ROUTE: HTTP path on the container that AI Platform Prediction sends health checks to.

  • AIP_PREDICT_ROUTE: HTTP path on the container that AI Platform Prediction forwards prediction requests to.

Loading...

Next, you build the Docker container image on Cloud Build -- the serverless CI/CD platform.  Building the Docker container image may take 10 to 15 minutes.

Loading...

Create Vertex AI Managed Dataset

You create a Vertex AI Managed Dataset to have Vertex AI take care of the data set split. This is optional, and alternatively you may want to pass the URI to the data set via environment variables.

Loading...

The next screenshot shows the newly created Vertex AI Managed dataset in Cloud Console.

https://storage.googleapis.com/gweb-cloudblog-publish/images/2_R_to_train.max-1400x1400.png

Train R Model on Vertex AI

The custom training job wraps the training process by creating an instance of your container image and executing train.R for model training and serve.R for model serving.

Note: You use the same custom container for both training and serving.

Loading...

To train the model, you call the method run(), with a machine type that is sufficient in resources to train a machine learning model on your dataset. For this tutorial, you use a n1-standard-4 VM instance.

Loading...

The model is now being trained, and you can watch the progress in the Vertex AI Console.

https://storage.googleapis.com/gweb-cloudblog-publish/images/3_R_to_train.max-1200x1200.png

Provision an Endpoint resource and deploy a Model

You create an Endpoint resource using the Endpoint.create() method. At a minimum, you specify the display name for the endpoint. Optionally, you can specify the project and location (region); otherwise the settings are inherited by the values you set when you initialized the Vertex AI SDK with the init() method.

In this example, the following parameters are specified:

  • display_name: A human readable name for the Endpoint resource.

  • project: Your project ID.

  • location: Your region.

  • labels: (optional) User defined metadata for the Endpoint in the form of key/value pairs.

This method returns an Endpoint object.

Loading...

You can deploy one of more Vertex AI Model resource instances to the same endpoint. Each Vertex AI Model resource that is deployed will have its own deployment container for the serving binary.

Next, you deploy the Vertex AI Model resource to a Vertex AI Endpoint resource. The Vertex AI Model resource already has defined for it the deployment container image. To deploy, you specify the following additional configuration settings:

  • The machine type.

  • The (if any) type and number of GPUs.

  • Static, manual or auto-scaling of VM instances.

In this example, you deploy the model with the minimal amount of specified parameters, as follows:

  • model: The Model resource.

  • deployed_model_displayed_name: The human readable name for the deployed model instance.

  • machine_type: The machine type for each VM instance.

Due to the requirements to provision the resource, this may take up to a few minutes.

Note: For this example, you specified the R deployment container in the previous step of uploading the model artifacts to a Vertex AI Model resource.

Loading...

The model is now being deployed to the endpoint, and you can see the result in the Vertex AI Console.

https://storage.googleapis.com/gweb-cloudblog-publish/images/4_R_to_train.max-900x900.png

Make predictions using newly created Endpoint

Finally, you create some example data to test making a prediction request to your deployed model. You use five JSON-encoded example data points (without the label median_house_value) from the original data file in data_uri. Finally, you make a prediction request with your example data. In this example, you use the REST API (e.g., Curl) to make the prediction request.

Loading...

The endpoint now returns five predictions in the same order the examples were sent.

https://storage.googleapis.com/gweb-cloudblog-publish/images/5_R_to_train.max-800x800.png

Cleanup

To clean up all Google Cloud resources used in this project, you can delete the Google Cloud project you used for the tutorial or delete the created resources.

Loading...

Summary

In this blog post, you have gone through the necessary steps to train and deploy an R model to Vertex AI. For easier reproducibility, you can refer to this Notebook on GitHub


Acknowledgements

This blog post received contributions from various people. In particular, we would like to thank  Rajesh Thallam for strategic and technical oversight, Andrew Ferlitsch for technical guidance, explanations, and code reviews, and Yuriy Babenko for reviews.

Posted in