Skip to content

Latest commit

 

History

History

deployment

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Deployment Examples

This folder contains examples of how to deploy Concrete ML models using Fully Homomorphic Encryption (FHE). These examples demonstrate the process of training, compiling, and deploying models for various use cases.

Overview

The deployment process generally follows these steps:

  1. Train the model (optional, depending on the use case)
  2. Compile the model to an FHE circuit
  3. Deploy the model using Docker
  4. Run inference using a client (locally or in Docker)

Available Examples

We provide three different use cases to demonstrate the deployment process:

  1. Breast Cancer Classification
  2. Sentiment Analysis
  3. CIFAR-10 Image Classification

Getting Started

Each example folder contains its own README with specific instructions. However, the general process is similar:

  1. Train or compile the model using the provided scripts
  2. Deploy the model using deploy_to_docker.py from the server folder
  3. Build the client Docker image
  4. Run the client to interact with the deployed model

For detailed instructions, please refer to the README in each example folder.

Requirements

  • Docker
  • Python 3.8 or later
  • Concrete ML library installed

Additional Resources