Model Deployers
Deploying your models and serve real-time predictions.
Last updated
Deploying your models and serve real-time predictions.
Last updated
Model Deployment is the process of making a machine learning model available to make predictions and decisions on real-world data. Getting predictions from trained models can be done in different ways depending on the use case, a batch prediction is used to generate predictions for a large amount of data at once, while a real-time prediction is used to generate predictions for a single data point at a time.
Model deployers are stack components responsible for serving models on a real-time or batch basis.
Online serving is the process of hosting and loading machine-learning models as part of a managed web service and providing access to the models through an API endpoint like HTTP or GRPC. Once deployed, model inference can be triggered at any time, and you can send inference requests to the model through the web service's API and receive fast, low-latency responses.
Batch inference or offline inference is the process of making a machine learning model make predictions on a batch of observations. This is useful for generating predictions for a large amount of data at once. The predictions are usually stored as files or in a database for end users or business applications.
The model deployers are optional components in the ZenML stack. They are used to deploy machine learning models to a target environment, either a development (local) or a production (Kubernetes or cloud) environment. The model deployers are mainly used to deploy models for real-time inference use cases. With the model deployers and other stack components, you can build pipelines that are continuously trained and deployed to production.
Here is an architecture diagram that shows how model deployers fit into the overall story of a remote stack.
ZenML comes with a local
MLflow model deployer which is a simple model deployer that deploys models to a local MLflow server. Additional model deployers that can be used to deploy models on production environments are provided by integrations:
Model Deployer | Flavor | Integration | Notes |
---|---|---|---|
|
| Deploys ML Model locally | |
|
| Build and Deploy ML models locally or for production grade (Cloud, K8s) | |
|
| Built on top of Kubernetes to deploy models for production grade environment | |
|
| Deploys ML model on Hugging Face Inference Endpoints | |
|
| Deploying models to Databricks Inference Endpoints with Databricks | |
|
| Deploys LLM using vLLM locally | |
custom | Extend the Artifact Store abstraction and provide your own implementation |
Every model deployer may have different attributes that must be configured in order to interact with the model serving tool, framework, or platform (e.g. hostnames, URLs, references to credentials, and other client-related configuration parameters). The following example shows the configuration of the MLflow and Seldon Core model deployers:
Seamless Model Deployment: Facilitates the deployment of machine learning models to various serving environments, such as local servers, Kubernetes clusters, or cloud platforms, ensuring that models can be deployed and managed efficiently in accordance with the specific requirements of the serving infrastructure by holds all the stack-related configuration attributes required to interact with the remote model serving tool, service, or platform (e.g. hostnames, URLs, references to credentials, and other client-related configuration parameters). The following are examples of configuring the MLflow and Seldon Core Model Deployers and registering them as a Stack component:
Lifecycle Management: Provides mechanisms for comprehensive lifecycle management of model servers, including the ability to start, stop, and delete model servers, as well as to update existing servers with new model versions, thereby optimizing resource utilization and facilitating continuous delivery of model updates. Some core methods that can be used to interact with the remote model server include:
deploy_model
- Deploys a model to the serving environment and returns a Service object that represents the deployed model server. find_model_server
- Finds and returns a list of Service objects that represent model servers that have been deployed to the serving environment, the services are stored in the DB and can be used as a reference to know what and where the model is deployed. stop_model_server
- Stops a model server that is currently running in the serving environment. start_model_server
- Starts a model server that has been stopped in the serving environment. delete_model_server
- Deletes a model server from the serving environment and from the DB.
ZenML uses the Service object to represent a model server that has been deployed to a serving environment. The Service object is saved in the DB and can be used as a reference to know what and where the model is deployed. The Service object consists of 2 main attributes, the config
and the status
. The config
attribute holds all the deployment configuration attributes required to create a new deployment, while the status
attribute holds the operational status of the deployment, such as the last error message, the prediction URL, and the deployment status.
When a Model Deployer is part of the active ZenML Stack, it is also possible to interact with it from the CLI to list, start, stop, or delete the model servers that is managed:
In Python, you can alternatively discover the prediction URL of a deployed model by inspecting the metadata of the step that deployed the model:
The ZenML integrations that provide Model Deployer stack components also include standard pipeline steps that can directly be inserted into any pipeline to achieve a continuous model deployment workflow. These steps take care of all the aspects of continuously deploying models to an external server and saving the Service configuration into the Artifact Store, where they can be loaded at a later time and re-create the initial conditions used to serve a particular model.