BentoML
Deploying your models locally with BentoML.
Last updated
Deploying your models locally with BentoML.
Last updated
BentoML is an open-source framework for machine learning model serving. it can be used to deploy models locally, in a cloud environment, or in a Kubernetes environment.
The BentoML Model Deployer is one of the available flavors of the stack component. Provided with the BentoML integration it can be used to deploy and or on a local running HTTP server.
The BentoML Model Deployer can be used to deploy models for local development and production use cases. There are two paths to deploy Bentos with ZenML, one as a local http server and one as a containerized service. Within the BentoML ecosystem, and are the tools responsible for deploying the Bentos into the Kubernetes cluster and Cloud Platforms. bentoctl
is deprecated now and might not work with the latest BentoML versions.
You should use the BentoML Model Deployer to:
Standardize the way you deploy your models to production within your organization.
if you are looking to deploy your models in a simple way, while you are still able to transform your model into a production-ready solution when that time comes.
If you are looking to deploy your models with other Kubernetes-based solutions, you can take a look at one of the other available in ZenML.
BentoML also allows you to deploy your models in a more complex production-grade setting. is one of the tools that can help you get there. Bentoctl takes your built Bento from a ZenML pipeline and deploys it with bentoctl
into a cloud environment such as AWS Lambda, AWS SageMaker, Google Cloud Functions, Google Cloud AI Platform, or Azure Functions. Read more about this in the .
The bentoctl
integration implementation is still in progress and will be available soon. The integration will allow you to deploy your models to a specific cloud provider with just a few lines of code using ZenML built-in steps.
Within ZenML you can quickly get started with BentoML by simply creating Model Deployer Stack Component with the BentoML flavor. To do so you'll need to install the required Python packages on your local machine to be able to deploy your models:
To register the BentoML model deployer with ZenML you need to run the following command:
The ZenML integration will provision a local HTTP deployment server as a daemon process that will continue to run in the background to serve the latest models and Bentos.
The bento_builder_step
only exists to make your life easier; you can always build the bento yourself and use it in the deployer step in the next section. A peek into how this step is implemented will give you ideas on how to build such a function yourself. This allows you to have more customization over the bento build process if needed.
Now, your custom step could look something like this:
You can now use this bento in any way you see fit.
Once you have your bento service defined, we can use the built-in bento builder step to build the bento bundle that will be used to serve the model. The following example shows how can call the built-in bento builder step within a ZenML pipeline. Make sure you have the bento service file in your repository and at the root-level and then use the correct class name in the service
parameter.
The Bento Builder step can be used in any orchestration pipeline that you create with ZenML. The step will build the bento bundle and save it to the used artifact store. Which can be used to serve the model in a local or containerized setting using the BentoML Model Deployer Step, or in a remote setting using the bentoctl
or Yatai. This gives you the flexibility to package your model in a way that is ready for different deployment scenarios.
We have now built our bento bundle, and we can use the built-in bentoml_model_deployer_step
to deploy the bento bundle to our local HTTP server or to a containerized service running in your local machine.
The bentoml_model_deployer_step
can only be used in a local environment. But in the case of using containerized deployment, you can use the Docker image created by the bentoml_model_deployer_step
to deploy your model to a remote environment. It is automatically pushed to your ZenML Stack's container registry.
Local deployment
The following example shows how to use the bentoml_model_deployer_step
to deploy the bento bundle to a local HTTP server.
Containerized deployment
You can choose to give a name and a tag to the image that will be built and pushed to your ZenML Stack's container registry. By default, the bento tag is used. If you are providing a custom image name, make sure that you attach the right registry name as prefix to the image name, otherwise the image push will fail.
This step:
builds a docker image for the bento and pushes it to the container registry
runs the docker image locally to make it ready for inference
You can find the image on your machine by running:
and also the running container by running:
The image is also pushed to the container registry of your ZenML stack. You can run the image in any environment with a sample command like this:
Once all the steps have been defined, we can create a ZenML pipeline and run it. The bento builder step expects to get the trained model as an input, so we need to make sure either we have a previous step that trains the model and outputs it or loads the model from a previous run. Then the deployer step expects to get the bento bundle as an input, so we need to make sure either we have a previous step that builds the bento bundle and outputs it or load the bento bundle from a previous run or external source.
The following example shows how to create a ZenML pipeline that trains a model, builds a bento bundle, creates and runs a docker image for it and pushes it to the container registry. You can then have a different pipeline that retrieves the image and deploys it to a remote environment.
In more complex scenarios, you might want to build a pipeline that trains a model and builds a bento bundle in a remote environment. Then creates a new pipeline that retrieves the bento bundle and deploys it to a local http server, or to a cloud provider. The following example shows a pipeline example that does exactly that.
Once the model has been deployed we can use the BentoML client to send requests to the deployed model. ZenML will automatically create a BentoML client for you and you can use it to send requests to the deployed model by simply calling the service to predict the method and passing the input data and the API function name.
The following example shows how to use the BentoML client to send requests to the deployed model.
Deploying and testing locally is a great way to get started and test your model. However, a real-world scenario will most likely require you to deploy your model to a remote environment. You can choose to deploy your model as a container image by setting the deployment_type
to container in the deployer step and then use the image created in a remote environment. You can also use bentoctl
or yatai
to deploy the bento to a cloud environment.
bentoctl
The bentoctl
CLI is now deprecated and might not work with the latest BentoML versions.
Bentoctl helps deploy any machine learning models as production-ready API endpoints into the cloud. It is a command line tool that provides a simple interface to manage your BentoML bundles.
The bentoctl
CLI provides a list of operators which are plugins that interact with cloud services, some of these operators are:
The recommended flow to use the BentoML model deployer is to first , then either build a or to build the model and service into a bento bundle, and finally .
The first step to being able to deploy your models and use BentoML is to create a which is the main logic that defines how your model will be served. The
The following example shows how to create a basic bento service that will be used to serve a torch model. Learn more about how to specify the inputs and outputs for the APIs and how to use validators in the
The model_name
here should be the name with which your model is saved to BentoML, typically through one of the following commands. More information about the BentoML model store and how to save models there can be found here on the .
The following example shows how to use the bentoml_model_deployer_step
to deploy the bento bundle to a running in your local machine. Make sure you have the docker
CLI installed on your local machine to be able to build an image and deploy the containerized service.
You can find more information about the bentoctl
tool .
For more information and a full list of configurable attributes of the BentoML Model Deployer, check out the .