This is a sample project demonstrating basic monitoring usage of BentoML.
In this project, we will train a classifier model using Scikit-learn and the Iris dataset, build an prediction service for serving the trained model with monitoring enabled, and deploy the model server as a docker image for production deployment.
Install python packages required for running this project:
pip install -r ./requirements.txtCreate an Iris classifier and save it with bentoml.sklearn:
import bentoml
from sklearn import svm, datasets
# Load training data
iris = datasets.load_iris()
X, y = iris.data, iris.target
# Model Training
clf = svm.SVC()
clf.fit(X, y)
# Save model to BentoML local model store
bentoml.sklearn.save_model("iris_clf", clf)Draft a service.py file with monitoring data collection lines, and run your service with Bento Server locally:
import numpy as np
import bentoml
from bentoml.io import Text
from bentoml.io import NumpyNdarray
CLASS_NAMES = ["setosa", "versicolor", "virginica"]
iris_clf_runner = bentoml.sklearn.get("iris_clf:latest").to_runner()
svc = bentoml.Service("iris_classifier", runners=[iris_clf_runner])
@svc.api(
input=NumpyNdarray.from_sample(np.array([4.9, 3.0, 1.4, 0.2], dtype=np.double)),
output=Text(),
)
async def classify(features: np.ndarray) -> str:
with bentoml.monitor("iris_classifier_prediction") as mon:
mon.log(features[0], name="sepal length", role="feature", data_type="numerical")
mon.log(features[1], name="sepal width", role="feature", data_type="numerical")
mon.log(features[2], name="petal length", role="feature", data_type="numerical")
mon.log(features[3], name="petal width", role="feature", data_type="numerical")
results = await iris_clf_runner.predict.async_run([features])
result = results[0]
category = CLASS_NAMES[result]
mon.log(category, name="pred", role="prediction", data_type="categorical")
return categorybentoml serve service.py:svc --reloadOpen your web browser at http://127.0.0.1:3000 to view the Bento UI for sending test requests.
You may also send request with curl command or any HTTP client, e.g.:
curl -X POST -H "content-type: application/json" --data "[[5.9, 3, 5.1, 1.8]]" http://127.0.0.1:3000/classifyThen you can find the exported data under the ./monitoring/<monitor_name>/data directory.
Here's the example output:
{"timestamp": "2022-11-02T12:38:38.701396", "request_id": 8781503815303167270, "sepal length": 5.9, "sepal width": 3.0, "petal length": 1.4, "petal width": 0.2, "pred": "0"}
{"timestamp": "2022-11-02T12:38:48.345552", "request_id": 14419506828678509143, "sepal length": 4.9, "sepal width": 3.0, "petal length": 1.4, "petal width": 0.2, "pred": "0"}You can customize the monitoring by modifying the config file of bentoml. The default is:
monitoring:
enabled: true
type: default
options:
output_dir: ./monitoringYou can draft your own bentoml config file deployment.yaml and change the output_dir to any directory you want. You can also use other monitoring solutions by changing the type to your desired handler. For example, if you want to use the arize handler, you can change the config to:
monitoring:
enabled: true
type: bentoml_plugins.arize.ArizeMonitor
options:
api_key: <your_api_key>
space_key: <your_space_key>Then you can specify the config file through environment variable BENTOML_CONFIG:
BENTOML_CONFIG=deployment.yaml bentoml serve service.py:svcBento is the distribution format in BentoML which captures all the source code, model files, config files and dependency specifications required for running the service for production deployment. Think of it as Docker/Container designed for machine learning models.
To begin with building Bento, create a bentofile.yaml under your project directory:
service: "service.py:svc"
labels:
owner: bentoml-team
project: gallery
include:
- "*.py"
python:
packages:
- scikit-learn
- pandasNext, run bentoml build from current directory to start the Bento build:
> bentoml build
05/05/2022 19:19:16 INFO [cli] Building BentoML service "iris_classifier:5wtigdwm4kwzduqj" from build context "/Users/bentoml/workspace/gallery/quickstart"
05/05/2022 19:19:16 INFO [cli] Packing model "iris_clf:4i7wbngm4crhpuqj" from "/Users/bentoml/bentoml/models/iris_clf/4i7wbngm4crhpuqj"
05/05/2022 19:19:16 INFO [cli] Successfully saved Model(tag="iris_clf:4i7wbngm4crhpuqj",
path="/var/folders/bq/gdsf0kmn2k1bf880r_l238600000gn/T/tmp26dx354ubentoml_bento_iris_classifier/models/iris_clf/4i7wbngm4crhpuqj/")
05/05/2022 19:19:16 INFO [cli] Locking PyPI package versions..
05/05/2022 19:19:17 INFO [cli]
██████╗░███████╗███╗░░██╗████████╗░█████╗░███╗░░░███╗██╗░░░░░
██╔══██╗██╔════╝████╗░██║╚══██╔══╝██╔══██╗████╗░████║██║░░░░░
██████╦╝█████╗░░██╔██╗██║░░░██║░░░██║░░██║██╔████╔██║██║░░░░░
██╔══██╗██╔══╝░░██║╚████║░░░██║░░░██║░░██║██║╚██╔╝██║██║░░░░░
██████╦╝███████╗██║░╚███║░░░██║░░░╚█████╔╝██║░╚═╝░██║███████╗
╚═════╝░╚══════╝╚═╝░░╚══╝░░░╚═╝░░░░╚════╝░╚═╝░░░░░╚═╝╚══════╝
05/05/2022 19:19:17 INFO [cli] Successfully built Bento(tag="iris_classifier:5wtigdwm4kwzduqj") at "/Users/bentoml/bentoml/bentos/iris_classifier/5wtigdwm4kwzduqj/"
A new Bento is now built and saved to local Bento store. You can view and manage it via
bentoml list,bentoml get and bentoml delete CLI command.
Then we will convert a Bento into a Docker image containing the HTTP model server.
Make sure you have docker installed and docker deamon running, and run the following commnand:
bentoml containerize iris_classifier:latestThis will build a new docker image with all source code, model files and dependencies in place, and ready for production deployment. To start a container with this docker image locally, run:
docker run -p 3000:3000 iris_classifier:invwzzsw7li6zckb2ie5eubhd --mount type=bind,source=<your directory>,target=/bento/monitoring- 👉 Pop into our Slack community! We're happy to help with any issue you face or even just to meet you and hear what you're working on.
- Dive deeper into the Core Concepts in BentoML
- Learn how to use BentoML with other ML Frameworks at Frameworks Guide or check out other gallery projects
- Learn more about model deployment options for Bento:
- 🦄️ Yatai: Model Deployment at scale on Kubernetes
- 🚀 bentoctl: Fast model deployment on any cloud platform