In this tutorial, you use Model Garden to deploy the Gemma 2B open model to a GPU-backed Vertex AI endpoint. You must deploy a model to an endpoint before that model can be used to serve online predictions. Deploying a model associates physical resources with the model so it can serve online predictions with low latency.
After you deploy the Gemma 2B model, you inference the trained
model by using the PredictionServiceClient
to get online
predictions. Online predictions are synchronous requests made to a
model that is deployed to an endpoint.
Objectives
This tutorial shows you how to perform the following tasks:
- Deploy the Gemma 2B open model to a GPU backed endpoint by using Model Garden
- Use the
PredictionServiceClient
to get online predictions
Costs
In this document, you use the following billable components of Google Cloud:
To generate a cost estimate based on your projected usage,
use the pricing calculator.
When you finish the tasks that are described in this document, you can avoid continued billing by deleting the resources that you created. For more information, see Clean up.
Before you begin
This tutorial requires you to:
- Set up a Google Cloud project and enable the Vertex AI API
- On your local machine:
- Install, initialize, and authenticate with the Google Cloud CLI
- Install the SDK for your language
Set up a Google Cloud project
Set up your Google Cloud project and enable the Vertex AI API.
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
-
Enable the Vertex AI API.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
-
Enable the Vertex AI API.
Set up the Google Cloud CLI
On your local machine, set up the Google Cloud CLI.
-
Install and initialize the Google Cloud CLI.
-
If you previously installed the gcloud CLI, ensure your
gcloud
components are updated by running this command.gcloud components update
-
To authenticate with the gcloud CLI, generate a local Application Default Credentials (ADC) file by running this command. The web flow launched by the command is used to provide your user credentials.
gcloud auth application-default login
For more information, see gcloud CLI authentication configuration and ADC configuration.
Set up the SDK for your programming language
To set up the environment used in this tutorial, you install the Vertex AI SDK for your language and the Protocol Buffers library. The code samples use functions from the Protocol Buffers library to convert the input dictionary to the JSON format that is expected by the API.
On your local machine, click one of the following tabs to install the SDK for your programming language.
Python
On your local machine, click one of the following tabs to install the SDK for your programming language.
Install and update the Vertex AI SDK for Python by running this command.
pip3 install --upgrade "google-cloud-aiplatform>=1.64"
Install the Protocol Buffers library for Python by running this command.
pip3 install --upgrade "profobuf>=5.28"
Node.js
Install or update the aiplatform
SDK for Node.js by running the following
command.
npm install @google-cloud/aiplatform
Java
To add google-cloud-aiplatform
as a dependency, add the appropriate code for
your environment.
Maven with BOM
Add the following HTML to your pom.xml
:
<dependencyManagement> <dependencies> <dependency> <artifactId>libraries-bom</artifactId> <groupId>com.google.cloud</groupId> <scope>import</scope> <type>pom</type> <version>26.34.0</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>com.google.cloud</groupId> <artifactId>google-cloud-aiplatform</artifactId> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java-util</artifactId> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> </dependencies>
Maven without BOM
Add the following to your
pom.xml
:
<dependency> <groupId>com.google.cloud</groupId> <artifactId>google-cloud-aiplatform</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java-util</artifactId> <version>5.28</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.11.0</version> </dependency>
Gradle without BOM
Add the following to your build.gradle
:
implementation 'com.google.cloud:google-cloud-aiplatform:1.1.0'
Go
Install these Go packages by running the following commands.
- The
aiplatform
Go client library - Go support for Protocol Buffers
- Google API Extensions for Go (gax-go)
go get cloud.google.com/go/aiplatform go get google.golang.org/protobuf go get github.com/googleapis/gax-go/v2
Deploy Gemma using Model Garden
You deploy the Gemma 2B model to a g2-standard-12
Compute Engine
accelerator optimized machine type. This machine has one NVIDIA L4 GPU
accelerator attached to it.
In this tutorial, you deploy the instruction-tuned Gemma 2B open
model by using the model card in Model Garden. The specific model
version is gemma2-2b-it
— -it
stands for instruction-tuned.
The Gemma 2B model has a lower parameter size which means lower resource requirements and more deployment flexibility.
In the Google Cloud console, go to the Model Garden page.
Click the Gemma 2 model card.
Click Deploy to open the Deploy model pane.
In the Deploy model pane, specify these details.
For Deployment environment click Vertex AI.
In the Deploy model section:
For Resource ID, choose
gemma-2b-it
.For Model name and Endpoint name, accept the default values. For example:
- Model name:
gemma2-2b-it-1234567891234
- Endpoint name:
gemma2-2b-it-mg-one-click-deploy
Make a note of the endpoint name. You'll need it to find the endpoint ID used in the code samples.
- Model name:
In the Deployment settings section:
Accept the default option for Basic settings.
For Region, accept the default value or choose a region from the list. Make a note of the region. You'll need it for the code samples.
For Machine spec, choose the GPU backed instance:
1 NVIDIA_L4 g2-standard-12
.
Click Deploy. When the deployment is finished, receive an email that contains details about your new endpoint. You can also view the endpoint details by clicking Online prediction > Endpoints and selecting your region.
Inference Gemma 2B with the PredictionServiceClient
After you deploy Gemma 2B, you use the PredictionServiceClient
to
get online predictions for the prompt: "Why is the sky blue?"
Code parameters
The PredictionServiceClient
code samples require you to update the following.
PROJECT_ID
: To find your project ID follow these steps.Go to the Welcome page in the Google Cloud console.
From the project picker at the top of the page, select your project.
The project name, project number, and project ID appear after the Welcome heading.
ENDPOINT_REGION
: This is the region where you deployed the endpoint.ENDPOINT_ID
: To find your endpoint ID, view it in the console or run thegcloud ai endpoints list
command. You'll need the endpoint name and region from the Deploy model pane.Console
You can view the endpoint details by clicking Online prediction > Endpoints and selecting your region. Note the number that appears in the
ID
column.gcloud
You can view the endpoint details by running the
gcloud ai endpoints list
command.gcloud ai endpoints list \ --region=ENDPOINT_REGION \ --filter=display_name=ENDPOINT_NAME
The output looks like this.
Using endpoint [https://us-central1-aiplatform.googleapis.com/] ENDPOINT_ID: 1234567891234567891 DISPLAY_NAME: gemma2-2b-it-mg-one-click-deploy
Sample code
In the sample code for your language, update the PROJECT_ID
,
ENDPOINT_REGION
, and ENDPOINT_ID
. Then run your code.
Python
To learn how to install or update the Vertex AI SDK for Python, see Install the Vertex AI SDK for Python. For more information, see the Python API reference documentation.
Node.js
Before trying this sample, follow the Node.js setup instructions in the Vertex AI quickstart using client libraries. For more information, see the Vertex AI Node.js API reference documentation.
To authenticate to Vertex AI, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.
Java
Before trying this sample, follow the Java setup instructions in the Vertex AI quickstart using client libraries. For more information, see the Vertex AI Java API reference documentation.
To authenticate to Vertex AI, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.
Go
Before trying this sample, follow the Go setup instructions in the Vertex AI quickstart using client libraries. For more information, see the Vertex AI Go API reference documentation.
To authenticate to Vertex AI, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.
Clean up
To avoid incurring charges to your Google Cloud account for the resources used in this tutorial, either delete the project that contains the resources, or keep the project and delete the individual resources.
Delete the project
- In the Google Cloud console, go to the Manage resources page.
- In the project list, select the project that you want to delete, and then click Delete.
- In the dialog, type the project ID, and then click Shut down to delete the project.
Delete individual resources
If you're keeping your project, delete the resources used in this tutorial:
- Undeploy the model and delete the endpoint
- Delete the model from Model Registry
Undeploy the model and delete the endpoint
Use one of the following methods to undeploy a model and delete the endpoint.
Console
In the Google Cloud console, click Online prediction and then click Endpoints.
In the Region drop-down list, choose the region where you deployed your endpoint.
Click the endpoint name to open the details page. For example:
gemma2-2b-it-mg-one-click-deploy
.On the row for the
Gemma 2 (Version 1)
model, click Actions, and then click Undeploy model from endpoint.In the Undeploy model from endpoint dialog, click Undeploy.
Click the Back button to return to the Endpoints page.
At the end of the
gemma2-2b-it-mg-one-click-deploy
row, click Actions, and then select Delete endpoint.In the confirmation prompt, click Confirm.
gcloud
To undeploy the model and delete the endpoint using the Google Cloud CLI, follow these steps.
In these commands, replace:
- PROJECT_ID with your project name
- LOCATION_ID with the region where you deployed the model and endpoint
- ENDPOINT_ID with the endpoint ID
- DEPLOYED_MODEL_NAME with the model's display name
- DEPLOYED_MODEL_ID with the model ID
Get the endpoint ID by running the
gcloud ai endpoints list
command. This command lists the endpoint IDs for all endpoints in your project. Make a note of the ID of the endpoint used in this tutorial.gcloud ai endpoints list \ --project=PROJECT_ID \ --region=LOCATION_ID
The output looks like this. In the output, the ID is called
ENDPOINT_ID
.Using endpoint [https://us-central1-aiplatform.googleapis.com/] ENDPOINT_ID: 1234567891234567891 DISPLAY_NAME: gemma2-2b-it-mg-one-click-deploy
Get the model ID by running the
gcloud ai models describe
command. Make a note of the ID of the model you deployed in this tutorial.gcloud ai models describe DEPLOYED_MODEL_NAME \ --project=PROJECT_ID \ --region=LOCATION_ID
The abbreviated output looks like this. In the output, the ID is called
deployedModelId
.Using endpoint [https://us-central1-aiplatform.googleapis.com/] artifactUri: [URI removed] baseModelSource: modelGardenSource: publicModelName: publishers/google/models/gemma2 ... deployedModels: - deployedModelId: '1234567891234567891' endpoint: projects/12345678912/locations/us-central1/endpoints/12345678912345 displayName: gemma2-2b-it-12345678912345 etag: [ETag removed] modelSourceInfo: sourceType: MODEL_GARDEN name: projects/123456789123/locations/us-central1/models/gemma2-2b-it-12345678912345 ...
Undeploy the model from the endpoint. You'll need the endpoint ID and model ID from the previous commands.
gcloud ai endpoints undeploy-model ENDPOINT_ID \ --project=PROJECT_ID \ --region=LOCATION_ID \ --deployed-model-id=DEPLOYED_MODEL_ID
This command produces no output.
Run the
gcloud ai endpoints delete
command to delete the endpoint.gcloud ai endpoints delete ENDPOINT_ID \ --project=PROJECT_ID \ --region=LOCATION_ID
When promted, type
y
to confirm. This command produces no output.
Delete the model
Console
Go to the Model Registry page from the Vertex AI section in the Google Cloud console.
In the Region drop-down list, choose the region where you deployed your model.
At the end of the
gemma2-2b-it-1234567891234
row, click Actions.Select Delete model.
When you delete the model, all associated model versions and evaluations are deleted from your Google Cloud project.
In the confirmation prompt, click Delete.
gcloud
To delete the model using the Google Cloud CLI, provide the model's display
name and region to the gcloud ai models delete
command.
gcloud ai models delete DEPLOYED_MODEL_NAME \
--project=PROJECT_ID \
--region=LOCATION_ID
Replace DEPLOYED_MODEL_NAME with the model's display name. Replace PROJECT_ID with your project name. Replace LOCATION_ID with the region where you deployed the model.
What's next
- Learn more about Gemma open models.
- Read the Gemma Terms of Use.
- Learn more about open models.
- Learn how to deploy a tuned model.
- Learn how to deploy Gemma 2 to Google Kubernetes Engine using HuggingFace Textgen Inference (TGI).
- Learn more about the
PredictionServiceClient
in your preferred language: Python, Node.js, Java, or Go.