facebookresearch / CrypTen
- вторник, 15 октября 2019 г. в 00:23:05
Python
A framework for Privacy Preserving Machine Learning
CrypTen is a framework for Privacy Preserving Machine Learning built on PyTorch. Its goal is to make secure computing techniques accessible to Machine Learning practitioners. It currently implements Secure Multiparty Computation as its secure computing backend and offers three main benefits to ML researchers:
It is machine learning first. The framework presents the protocols via a CrypTensor
object that looks and feels exactly like a PyTorch Tensor. This allows the user to use
automatic differentiation and neural network modules akin to those in PyTorch.
CrypTen is library-based. It implements a tensor library just as PyTorch does. This makes it easier for practitioners to debug, experiment on, and explore ML models.
The framework is built with real-world challenges in mind. CrypTen does not scale back or oversimplify the implementation of the secure protocols.
Here is a bit of CrypTen code that encrypts and decrypts tensors and adds them
import torch
import crypten
crypten.init()
x = torch.tensor([1.0, 2.0. 3.0])
x_enc = crypten.cryptensor(x) # encrypt
x_dec = x_enc.get_plain_text() # decrypt
y_enc = crypten.cryptensor([2.0, 3.0, 4.0])
sum_xy = x_enc + y_enc # add encrypted tensors
sum_xy_dec = sum_xy.get_plain_text() # decrypt sumIt is currently not production ready and its main use is as a research framework.
CrypTen currently runs on Linux and Mac. It also needs a PyTorch nightly build. Windows is not supported. We also do not currently support computation on GPUs.
Install Anaconda 2019.07 or later and then do the following:
For Linux or Mac
conda create -n crypten-env python=3.7
conda activate crypten-env
conda install pytorch torchvision -c pytorch
git clone https://github.com/facebookresearch/CrypTen.git
cd CrypTen
pip install -e .If you want to run the examples in the examples directory, you should also do the following
pip install -r requirements.examples.txtWe provide examples covering a range of models in the examples directory
mpc_linear_svm, generates random data and trains a
SVM classifier on encrypted data.mpc_cifar, trains an adaptation of LeNet on CIFAR in
cleartext and encrypts the model and data for inference.tfe_benchmarks, trains three different network
architectures on MNIST in cleartext, and encrypts the trained model and data
for inference.bandits, trains a contextual bandits model on
encrypted data (MNIST).mpc_imagenet, performs inference on pretrained
models from torchvision.For examples that train in cleartext, we also provide pre-trained models in
cleartext in the model subdirectory of each example subdirectory.
You can check all example specific command line options by doing the following;
shown here for tfe_benchmarks:
$ python3 examples/tfe_benchmarks/launcher.py --helpWe have a set of tutorials in the tutorials directory to show how
CrypTen works. These are presented as Jupyter notebooks so please install
the following in your conda environment
conda install ipython jupyter
pip install -r requirements.examples.txtIntroduction.ipynb - an introduction to Secure Multiparty Compute; CrypTen's
underlying secure computing protocol; use cases we are trying to solve and the
threat model we assume.Tutorial_1_Basics_of_CrypTen_Tensors.ipynb - introduces CrypTensor, CrypTen's
encrypted tensor object, and shows how to use it to do various operations on
this object.Tutorial_2_Inside_CrypTensors.ipynb – delves deeper into CrypTensor to show
the inner workings; specifically how CrypTensor uses MPCTensor for its
backend and the two different kind of sharings, arithmetic and binary, are
used for two different kind of functions. It also shows CrypTen's
MPI-inspired
programming model.Tutorial_3_Introduction_to_Access_Control.ipynb - shows how to train a linear
model using CrypTen and shows various scenarios of data labeling, feature
aggregation, dataset augmentation and model hiding where this is applicable.Tutorial_4_Classification_with_Encrypted_Neural_Networks.ipynb – shows how
CrypTen can load a pre-trained PyTorch model, encrypt it and then do inference
on encrypted data.Tutorial_5_Under_the_hood_of_Encrypted_Networks.ipynb - examines how CrypTen
loads PyTorch models, how they are encrypted and how data moves through a multilayer
network.Tutorial_6_CrypTen_on_AWS_instances.ipynb - shows how to use scrips/aws_launcher.py
to launch our examples on AWS. It can also work with your code written in CrypTen.Tutorial_7_Training_an_Encrypted_Neural_Network.ipynb - introduces AutogradCrypTensor,
a wrapper that adds automatic differentiation functionality to CrypTensor. This
allows you to train neural networks in CrypTen. We expect to move this functionality
into the CrypTensor object in a future release.CrypTen is documented here
Please contact us to join the CrypTen community on Slack
See the CONTRIBUTING file for how to help out.
CrypTen is MIT licensed, as found in the LICENSE file.