This document explains how to use Concrete ML API to deploy hybrid models in Fully Homomorphic Encryption (FHE).
FHE allows cloud applications to process private user data securely, minimizing the risk of data leaks. Deploying machine learning (ML) models in the cloud offers several advantages:
Simplifies model updates.
Scales to large user bases by leveraging substantial compute power.
Protects model's Intellectual Property (IP) by keeping the model on a trusted server rather than on client devices.
However, not all applications can be easily converted to FHE computation. The high computation cost of FHE might exceed latency requirements for full conversion.
Hybrid models provide a balance between on-device deployment and cloud-based deployment. This approach involves:
Executing parts of the model on the client side.
Securely processing other parts with FHE on the server side.
Concrete ML supports hybrid deployment for various neural network models, including Multilayer Perceptron (MLP), Convolutional Neural Network (CNN), and Large Language Models(LLM).
To protect model IP, carefully choose the model parts to execute in the cloud. Some black-box model stealing attacks use knowledge distillation or differential methods. Generally, the difficulty of stealing a machine learning model increases with the model's size, number of parameters, and depth.
The hybrid model deployment API simplifies integrating the standard deployment procedure into neural network style models that are compiled with compile_brevitas_qat_model
or compile_torch_model
.
To use hybrid model deployment, the first step is to define which part of the PyTorch neural network model must be executed in FHE. Ensure the model part is a nn.Module
and is identified by its key in the original model's .named_modules()
.
Here is an example:
The save_and_clear_private_info
functions as follows:
Serializes the FHE circuits for the model parts chosen to be server-side.
Saves the client-side model, removing the weights of the layers transferred to the server.
Saves all necessary information required to serve these sub-models with FHE using the FHEModelDev
class.
To create a server application that serves these sub-models, use the FHEModelServer
class:
For more information about serving FHE models, see the client/server section.
You can develop a client application that deploys a model with hybrid deployment in a very similar manner to on-premise deployment: Use PyTorch to load the model normally, but specify the remote endpoint and the part of the model to be executed remotely.
Next, obtain the parameters necessary to encrypt and quantize data, as detailed in the client/server documentation.
When the client application is ready to make inference requests to the server, set the operation mode of the HybridFHEModel
instance to HybridFHEMode.REMOTE
:
For inference with the HybridFHEModel
instance, hybrid_model
, call the regular forward
method as if the model was fully deployed locally::
When calling HybridFHEModel
, it handles all the necessary intermediate steps for each model part deployed remotely, including:
Quantizing the data.
Encrypting the data.
Making the request to the server using requests
Python module.
Decrypting and de-quantizing the result.