Giter Site home page Giter Site logo

datakaveri / iudx-motion2nx Goto Github PK

View Code? Open in Web Editor NEW
2.0 4.0 11.0 88.48 MB

Extension of the MOTION2NX framework to implement neural network inferencing task where the data is supplied to the “secure compute servers” by the “data providers”.

License: MIT License

CMake 0.96% C++ 87.64% C 5.50% Python 1.73% Shell 4.13% Dockerfile 0.04%
data-exchange ppml privacy-preserving-machine-learning secure-multi-party-computation smpc smart-cities

iudx-motion2nx's Introduction

IUDX-MOTION2NX

This software is an extension of the Encrypto group’s MOTION2NX framework for Generic Hybrid Two-Party Computation. The goal of this extension is to implement a neural network inferencing task on a framework where the data is supplied to the “secure compute servers” by the “data providers”. More specifically, we added two data providers to supply private and public shares to the compute servers. These data providers support only ArithmeticBEAVY secret sharing protocol. We can extend this setting to multiple (>2) data providers as well.

New additions

  1. Data providers: Implemented data providers that provide shares of their respective private data to the secure compute servers for performing privacy preserving operations.

  2. New gates to support constant multiplication: This operation is multiplying a constant (which is common knowledge to both the parties) with private data. This new gate does not require creation of shares for the constant, thereby making the operation faster.

  3. Modular approach to Neural Network Inferencing on MNIST data: Two compute servers are involved in the inferencing task. There are two data providers, one of them provides the neural network model (weights and biases) to the compute servers and the other data provider (Image provider) provides image that has to be inferred. We do not reconstruct the final output “in clear” at the compute servers in order to maintain privacy. The compute servers send their respective output shares to the image provider. The image provider then reconstructs the output “in clear”. In our modular approach, we split the deep (multi-layer) network model into smaller modules that are executed sequentially. We ensure that each module still preserves the privacy of its respective input and output (thereby preserving the privacy of the intermediate results in the deep neural network).
    The modular approach helps us to accomplish the following:
    (a) Reduce the memory usage for secure computation of the neural network inferencing task.
    (b) Provides us with the ability to easily execute a deep neural network with large number of layers (>2) because the memory usage does not scale up with the number of layers in our modular approach.

  4. Accuracy and Cross Entropy Loss testing for MNIST Neural Network Inference

This code is provided as a experimental implementation for testing purposes and should not be used in a production environment.

These ideas have been submitted in the form of a workshop paper under the title, "Empowering SMPC: Bridging the Gap Between Scalability, Memory Efficiency and Privacy in Neural Network Inference". You can access the full paper and its abstract on arXiv by following the link: Empowering SMPC: Bridging the Gap Between Scalability, Memory Efficiency and Privacy in Neural Network Inference.

The abstract of the paper is available for your reference below:

This paper aims to develop an efficient open-source Secure Multi-Party Computation (SMPC) repository, that addresses the issue of practical and scalable implementation of SMPC protocol on machines with moderate computational resources, while aiming to reduce the execution time. We implement the ABY2.0 protocol for SMPC, providing developers with effective tools for building applications on the ABY 2.0 protocol. This article addresses the limitations of the C++ based MOTION2NX framework for secure neural network inference, including memory constraints and operation compatibility issues. Our enhancements include optimizing the memory usage, reducing execution time using a third-party Helper node, and enhancing efficiency while still preserving data privacy. These optimizations enable MNIST dataset inference in just 32 seconds with only 0.2 GB of RAM for a 5-layer neural network. In contrast, the previous baseline implementation required 8.03 GB of RAM and 200 seconds of execution time.

Working Environment

This software was developed and tested in the following environment (it might not work with older versions):

Make sure you have installed all of the following prerequisites on your development machine (a machine with Ubuntu 22.04) to create above environment:

  • Git - Download & Install Git. OSX and Linux machines typically have this already installed. You can install it using sudo apt update && sudo apt install git

  • g++ compiler - OSX and Linux machines typically have this already installed. The latest version should ideally be above 9 for gcc or g++. To install g++ , install using sudo apt update &&sudo apt install g++

  • Openssl : Install openssl package and libraries need for motion2nx using sudo apt update && sudo apt-get -y install --no-install-recommends openssl libssl-dev

  • CMAKE and build tools - Install cmake and other buiuld tools using sudo apt update && sudo apt-get -y install --no-install-recommends build-essential g++ python3-dev autotools-dev libicu-dev libbz2-dev cmake

  • Boost libraries -

    1. First uninstall the existing boost libraries present on the system. The following commands delete boost except its dependencies.

      sudo apt-get update && sudo apt-get -y --purge remove libboost-all-dev libboost-doc libboost-dev && sudo rm -f /usr/lib/libboost_* 
      
    2. Download boost. Make sure to install the .tar.gz extension as it is easier to install.

    3. Go to the place where it is downloaded and use the following command to extract boost.
      tar -zxvf boost_1_79_0.tar.gz

    4. Run the following commands before proceeding to the next step. NUM_JOBS=`nproc`

      echo "Number of parallel jobs that can be done on this machine: $NUM_JOBS"
      
    5. Change directory to the folder where boost was extracted and run the following commands.

      ./bootstrap.sh --with-libraries=atomic,date_time,exception,filesystem,iostreams,locale,program_options,regex,system,test,thread,timer,log,json,context,fiber
      
      sudo ./b2 --with=all -j $NUM_JOBS install 
      

      This might take upto an hour to setup the full boost library.

    6. To check if it is installed successfully, run the following commands.

      cat /usr/local/include/boost/version.hpp | grep "BOOST_LIB_VERSION" 
      

    Good to go if boost version is greater than or equal to 1.75.

  • Eigen -

    1. Download Eigen

    2. After downloading, extract the above folder using tar -xvf eigen-3.4.0.

    3. Run the following commands to install Eigen.

      cd eigen-3.4.0
      mkdir build_dir
      cd build_dir
      cmake ../../eigen-3.4.0
      make install (or) sudo make install
      
    4. Check the Eigen version using the following instruction.

      grep "#define EIGEN_[^_]*_VERSION" /usr/local/include/eigen3/Eigen/src/Core/util/Macros.h
      
  • Other Packages/Libraries :The build system downloads and builds GoogleTest and Benchmark if required. It also tries to download and build fmt, and flatbuffers if it cannot find these libraries in the system.

Steps for Building Motion2nx

  • Check whether gnome is installed using
    gnome-shell --version
    If if is not installed, install it using\

    sudo apt install ubuntu-gnome-desktop
    
  • Clone the Repository\

    git clone https://github.com/datakaveri/iudx-MOTION2NX.git
    

    (or)

    If you want to clone the modulartensor branch:\

    git clone -b modulartensor https://github.com/datakaveri/iudx-MOTION2NX.git 
    
  • Now cd into the repository and build it using the following command

    CC=gcc CXX=g++ cmake \
    -B build_debwithrelinfo_gcc \
    -DCMAKE_BUILD_TYPE=DebWithRelInfo \
    -DMOTION_BUILD_EXE=On \
    -DMOTION_BUILD_TESTS=On \
    -DMOTION_USE_AVX=AVX2
    
  • The above code builds the necessary folder, and each of the flags indicate the requirements to be fulfilled for the build.

    Explanation of the flags:
    CC=gcc CXX=g++: Selects GCC as compiler
    -B build_debwithrelinfo_gcc: Creates a build directory named "build_debwithrelinfo_gcc"
    -DCMAKE_BUILD_TYPE=DebWithRelInfo: Compiles with optimization and debug symbols -- makes tests run faster and debugging easier
    -DMOTION_BUILD_EXE=On: Builds example executables and benchmarks
    -DMOTION_BUILD_TESTS=On: Builds tests
    -DMOTION_USE_AVX=AVX2: Compiles with AVX2 instructions (choose one of AVX/AVX2/AVX512)

  • Once that is done, execute the command to install the executables and their dependencies. This process can take upto an hour:\

    cmake --build build_debwithrelinfo_gcc
    
  • cd into the repository folder, and run the following ONCE
    source setup.sh\

    This sets the required environment variables in ~/.bashrc, ~/.profile.
    Execute this command only once.

    Steps for running the Modular Neural Network Inference code

    There are sample MNIST images in "[path to repository folder]/iudx-MOTION2NX/Dataprovider/image_provider/images". We use the following convention $Xi, i\in {0,1,2,...}$. We provide images $X0$ to $X98$ in the images folder. Each image is a column matrix of size $785 \times 1$. The first number of every column matrix is the actual label of the image. All the remaining numbers are normalised pixel values ranging from 0 to 1.

    The sharegenerator.sh script creates secret shares of the image and sends it to the compute servers. Set image_ids in the script to create shares of the specified images. For example, to create shares of image X23 , put image_ids=(23)

  • To create shares for a given sample MNIST image, do the following.

    • cd into the "[ path to repository folder ]/scripts" folder.

    • Open a new terminal and run the script.

      bash sharegenerator.sh
      
    • This script generates MNIST image shares and neural network model shares (weights and bias shares). The image and neural network shares are saved inside "[ path to repository folder ]/build_debwithrelinfo_gcc/server0" in Server-0, and "[ path to repository folder ]/build_debwithrelinfo_gcc/server1" in Server-1.

    (or)

  • To create a new MNIST image matrix , follow the steps given below.

    • Flatten the image to a normalised (between 0 to 1) pixel vector (784 rows, 1 column). Use the "flatten_image.py" python code given in "[path to repository folder ]/Dataprovider/image_provider" to flatten the image matrix.

    • To run flatten_image.py, run the following command.

      python3 flatten_image.py --input_image_path [path to image] --output_image_ID [image number] 
      
    • Open "[ path to repository folder ]/scripts/sharegenerator.sh" and assign the image number to the image_ids list. For example, to create shares of image X23 , put image_ids=(23)

       image_ids=([your_image_number])
      
    • Run the script

      bash sharegenerator.sh
      

The script inference.sh performs the inferencing task on the image index given by $i$ in the script.

  • Open a new terminal, and run the following script.

    bash inference.sh
    

    This runs the neural network inference using the generated image and neural network shares. It runs it layer by layer.
    The final MNIST classification result is displayed on the terminal.

    (or)

    To run the neural network inference with reduced memory requirement, run the following script.

    bash inference_split.sh
    

The script inference_split.sh performs the inferencing task with splits on layer 1 matrix multiplication on the image index given by image_ids in the script. This script reduces the average memory requirement by the number of splits specified in the inference_split script. To change the number of splits, update the split variable in the script. For example, split=2. User can change this number to be 1, 2, 4, 8, 16.

Docker based deployment

Pre-requisite

  • Install docker-ce, docker compose through following script for Ubuntu:

    curl -sL https://raw.githubusercontent.com/datakaveri/iudx-deployment/master/Docker-Swarm-deployment/single-node/infrastructure/files/packages-docker-install.sh | sudo bash
    

    (or)

    refer official docs https://docs.docker.com/engine/install/

  • For convenience, you can manage docker as non root user, ref: https://docs.docker.com/engine/install/linux-postinstall/#manage-docker-as-a-non-root-user

    • Note : Please do not manage docker as non-root user in production envrionment
  • Copy the config files

    cp -r config_files/example-smpc-remote-config.json config_files/smpc-remote-config.json
    
  • Copy the example data to use for inferencing

    cp -r example-data/data .
    
  • To create a new MNIST image matrix for inferencing through SMPC , follow the steps mentioned above

Build docker image

  • Build docker image locally, this can be used for test/dev deployment
    ./docker/build.sh
    
  • To build and push docker image to docker registry
    ./docker/build-push.sh
    
  • To update Build cache in registry,
    ./docker/build-cache.sh
    

Local SMPC Deployment

  • Deploy all smpc servers in one container using local image
    docker compose -f docker-compose.local.yaml up -d
    

2 Party SMPC deployment

  • Deploy the two servers locally using local image

    1. SMPC server 0 - SMPC compute server0, image provide
    2. SMPC server 1 - SMPC compute server1, model provider
    • without splits
      docker compose -f docker-compose.remote.yaml up -d
      
    • with splits
      docker compose -f docker-compose.remote_split.yaml up -d
      
  • To run the two server locally using docker image from container registry, copy example-docker-compose.remote.yaml to docker-compose.remote.yaml file and replace with appropriate docker image tag you want to deploy

    cp example-docker-compose.remote-registry.yaml docker-compose.remote-registry.yaml
    
    • without splits

      docker compose -f docker-compose.remote.yaml -f docker-compose.remote-registry.yaml up -d
      
    • with splits

      docker compose -f docker-compose.remote_split.yaml -f docker-compose.remote-registry.yaml up -d
      
  • To run each server on different machine, git clone this repo on each of the machines and run following, :

    # after copy, replace with appropriate image tag
    cp example-docker-compose.remote-registry.yaml docker-compose.remote-registry.yaml
    
    • without splits

      # On SMPC server 0
      docker compose -f docker-compose.remote.yaml -f docker-compose.remote-registry.yaml up -d smpc-server0
      
      # On SMPC server 1
      docker compose -f docker-compose.remote.yaml -f docker-compose.remote-registry.yaml up -d smpc-server1
      
    • with splits

      # On SMPC server 0
      docker compose -f docker-compose.remote_split.yaml -f docker-compose.remote-registry.yaml up -d smpc-server0
      
      # On SMPC server 1
      docker compose -f docker-compose.remote_split.yaml -f docker-compose.remote-registry.yaml up -d smpc-server1
      

Miscellaneous Docker commands

  • To get logs of container, use following commands

    # Get compose name
    docker compose ls
    
    # using compose name get logs
    docker compose --project-name <compose-name> logs -f
    
  • To bring down container use following command:

    # using compose name bring down
    docker compose --project-name <compose-name> down
    

iudx-motion2nx's People

Contributors

abhi4578 avatar daksh-prajapati avatar dd23 avatar kallamadi-haritha avatar lenerd avatar nityasantoshini2301 avatar oleksandr-tkachenko avatar pranavrd avatar ramyaburra1 avatar rashmiiudx avatar rishabkashyap14 avatar shreyasgupta-dk avatar soumitrip avatar srish-4 avatar srishti0412 avatar udbhavbisarya23 avatar vishnutejesh avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.