Wallaroo SDK Upload Tutorial: Hugging Face Zero Shot Classification
This tutorial can be downloaded as part of the Wallaroo Tutorials repository.
Wallaroo Model Upload via the Wallaroo SDK: Hugging Face Zero Shot Classification
The following tutorial demonstrates how to upload a Hugging Face Zero Shot model to a Wallaroo instance.
Tutorial Goals
Demonstrate the following:
- Upload a Hugging Face Zero Shot Model to a Wallaroo instance.
- Create a pipeline and add the model as a pipeline step.
- Perform a sample inference.
Prerequisites
- Wallaroo Version 2023.2.1 or above instance.
References
- Wallaroo MLOps API Essentials Guide: Model Upload and Registrations
- Wallaroo API Connection Guide
- DNS Integration Guide
Tutorial Steps
Import Libraries
The first step is to import the libraries we’ll be using. These are included by default in the Wallaroo instance’s JupyterHub service.
import json
import os
import wallaroo
from wallaroo.pipeline import Pipeline
from wallaroo.deployment_config import DeploymentConfigBuilder
from wallaroo.framework import Framework
from wallaroo.object import EntityNotFoundError
import pyarrow as pa
import numpy as np
import pandas as pd
Open a Connection to Wallaroo
The next step is connect to Wallaroo through the Wallaroo client. The Python library is included in the Wallaroo install and available through the Jupyter Hub interface provided with your Wallaroo environment.
This is accomplished using the wallaroo.Client()
command, which provides a URL to grant the SDK permission to your specific Wallaroo environment. When displayed, enter the URL into a browser and confirm permissions. Store the connection into a variable that can be referenced later.
If logging into the Wallaroo instance through the internal JupyterHub service, use wl = wallaroo.Client()
. For more details on logging in through Wallaroo, see the Wallaroo SDK Essentials Guide: Client Connection.
wl = wallaroo.Client()
Set Variables and Helper Functions
We’ll set the name of our workspace, pipeline, models and files. Workspace names must be unique across the Wallaroo workspace. For this, we’ll add in a randomly generated 4 characters to the workspace name to prevent collisions with other users’ workspaces. If running this tutorial, we recommend hard coding the workspace name so it will function in the same workspace each time it’s run.
workspace_name = f'hf-zero-shot-classification'
pipeline_name = f'hf-zero-shot-classification'
model_name = 'hf-zero-shot-classification'
model_file_name = './models/model-auto-conversion_hugging-face_dummy-pipelines_zero-shot-classification-pipeline.zip'
Create Workspace and Pipeline
We will now create the Wallaroo workspace to store our model and set it as the current workspace. Future commands will default to this workspace for pipeline creation, model uploads, etc. We’ll create our Wallaroo pipeline to deploy our model.
workspace = wl.get_workspace(name=workspace_name, create_if_not_exist=True)
wl.set_current_workspace(workspace)
pipeline = wl.build_pipeline(pipeline_name)
Configure Data Schemas
The following parameters are required for Hugging Face models. Note that while some fields are considered as optional for the upload_model
method, they are required for proper uploading of a Hugging Face model to Wallaroo.
Parameter | Type | Description |
---|---|---|
name | string (Required) | The name of the model. Model names are unique per workspace. Models that are uploaded with the same name are assigned as a new version of the model. |
path | string (Required) | The path to the model file being uploaded. |
framework | string (Upload Method Optional, Hugging Face model Required) | Set as the framework. |
input_schema | pyarrow.lib.Schema (Upload Method Optional, Hugging Face model Required) | The input schema in Apache Arrow schema format. |
output_schema | pyarrow.lib.Schema (Upload Method Optional, Hugging Face model Required) | The output schema in Apache Arrow schema format. |
convert_wait | bool (Upload Method Optional, Hugging Face model Optional) (Default: True) |
|
The input and output schemas will be configured for the data inputs and outputs. More information on the available inputs under the official 🤗 Hugging Face source code.
input_schema = pa.schema([
pa.field('inputs', pa.string()), # required
pa.field('candidate_labels', pa.list_(pa.string(), list_size=2)), # required
pa.field('hypothesis_template', pa.string()), # optional
pa.field('multi_label', pa.bool_()), # optional
])
output_schema = pa.schema([
pa.field('sequence', pa.string()),
pa.field('scores', pa.list_(pa.float64(), list_size=2)), # same as number of candidate labels, list_size can be skipped by may result in slightly worse performance
pa.field('labels', pa.list_(pa.string(), list_size=2)), # same as number of candidate labels, list_size can be skipped by may result in slightly worse performance
])
Upload Model
The model will be uploaded with the framework set as Framework.HUGGING_FACE_ZERO_SHOT_CLASSIFICATION
.
framework=Framework.HUGGING_FACE_ZERO_SHOT_CLASSIFICATION
model = wl.upload_model(model_name,
model_file_name,
framework=framework,
input_schema=input_schema,
output_schema=output_schema,
convert_wait=True)
model
Waiting for model loading - this will take up to 10.0min.
Model is pending loading to a container runtime..
Model is attempting loading to a container runtime..........................................successful
Ready
Name | hf-zero-shot-classification |
Version | 90722c1c-99c7-4e1c-8a50-37c499553975 |
File Name | model-auto-conversion_hugging-face_dummy-pipelines_zero-shot-classification-pipeline.zip |
SHA | 3dcc14dd925489d4f0a3960e90a7ab5917ab685ce955beca8924aa7bb9a69398 |
Status | ready |
Image Path | proxy.replicated.com/proxy/wallaroo/ghcr.io/wallaroolabs/mac-deploy:v2024.1.0-main-4898 |
Architecture | x86 |
Acceleration | none |
Updated At | 2024-11-Apr 19:39:06 |
model.config().runtime()
'flight'
Deploy Pipeline
The model is uploaded and ready for use. We’ll add it as a step in our pipeline, then deploy the pipeline. For this example we’re allocated 0.25 cpu and 4 Gi RAM to the pipeline through the pipeline’s deployment configuration.
deployment_config = DeploymentConfigBuilder() \
.cpus(0.25).memory('1Gi') \
.build()
pipeline = wl.build_pipeline(pipeline_name)
# clear the pipeline if used previously
pipeline.undeploy()
pipeline.clear()
pipeline.add_model_step(model)
pipeline.deploy(deployment_config=deployment_config)
pipeline.status()
{'status': 'Running',
'details': [],
'engines': [{'ip': '10.28.0.156',
'name': 'engine-68954468dc-fcsfv',
'status': 'Running',
'reason': None,
'details': [],
'pipeline_statuses': {'pipelines': [{'id': 'hf-zero-shot-classification',
'status': 'Running'}]},
'model_statuses': {'models': [{'name': 'hf-zero-shot-classification',
'sha': '3dcc14dd925489d4f0a3960e90a7ab5917ab685ce955beca8924aa7bb9a69398',
'status': 'Running',
'version': '90722c1c-99c7-4e1c-8a50-37c499553975'}]}}],
'engine_lbs': [{'ip': '10.28.1.104',
'name': 'engine-lb-d7cc8fc9c-rn6jt',
'status': 'Running',
'reason': None,
'details': []}],
'sidekicks': [{'ip': '10.28.2.231',
'name': 'engine-sidekick-hf-zero-shot-classification-110-86674db4d77z7v6',
'status': 'Running',
'reason': None,
'details': [],
'statuses': '\n'}]}
Run Inference
A sample inference will be run. First the pandas DataFrame used for the inference is created, then the inference run through the pipeline’s infer
method.
input_data = {
"inputs": ["this is a test", "this is another test"], # required
"candidate_labels": [["english", "german"], ["english", "german"]], # optional: using the defaults, similar to not passing this parameter
"hypothesis_template": ["This example is {}.", "This example is {}."], # optional: using the defaults, similar to not passing this parameter
"multi_label": [False, False], # optional: using the defaults, similar to not passing this parameter
}
dataframe = pd.DataFrame(input_data)
dataframe
inputs | candidate_labels | hypothesis_template | multi_label | |
---|---|---|---|---|
0 | this is a test | [english, german] | This example is {}. | False |
1 | this is another test | [english, german] | This example is {}. | False |
%time
pipeline.infer(dataframe)
CPU times: user 2 µs, sys: 1 µs, total: 3 µs
Wall time: 3.81 µs
time | in.candidate_labels | in.hypothesis_template | in.inputs | in.multi_label | out.labels | out.scores | out.sequence | anomaly.count | |
---|---|---|---|---|---|---|---|---|---|
0 | 2024-04-11 19:40:39.759 | [english, german] | This example is {}. | this is a test | False | [english, german] | [0.5040545463562012, 0.49594542384147644] | this is a test | 0 |
1 | 2024-04-11 19:40:39.759 | [english, german] | This example is {}. | this is another test | False | [english, german] | [0.5037839412689209, 0.4962160289287567] | this is another test | 0 |
Undeploy Pipelines
With the tutorial complete, the pipeline is undeployed to return the resources back to the cluster.
pipeline.undeploy()
name | hf-zero-shot-classification |
---|---|
created | 2024-04-11 19:14:41.044933+00:00 |
last_updated | 2024-04-11 19:39:58.688936+00:00 |
deployed | False |
arch | x86 |
accel | none |
tags | |
versions | 5ab27282-222d-4955-b846-863f70c5bcf2, b04d827e-45d4-459d-89ca-8750e3c2b742, d39b3c2c-5320-481f-85f9-d0cb973bb8cb |
steps | hf-zero-shot-classification |
published | False |