Code Monkey home page Code Monkey logo

grad-cnns's Introduction

Efficient Per-Example Gradient Computations in Convolutional Neural Networks

By Gaspar Rochette <[email protected]>, Andre Manoel <[email protected]> and Eric W. Tramel <[email protected]>

For more details, please check the report at [arXiv:1912.06015].

Computing per-example gradients is not a trivial task in deep learning frameworks. The naive approach, of simply looping through the examples, is often unpractical: for a batch size of $B$, this approach typically makes the code $O(B)$ times slower to run.

Other strategies have been discussed in reports and online forums (see manuscript for more details). The first report to discuss such an issue is Goodfellow (2015). However, the technique it presents to deal with the issue is not applicable to convolutional networks (CNNs).

A different solution which works better for CNNs was presented at this Github discussion on the Tensorflow repository, also by Goodfellow. We shall call this solution multi. It is essentially the fastest solution found to this day, and is the one used by e.g. tf.privacy, through the tf.vectorized_map function (see code here) A good summary of the different strategies, with benchmarks in PyTorch, was presented here by Künstner.

In our report, we rediscuss these strategies, performing a series of benchmarks. We focus on the differential privacy use case, and measure how long does it take to process a few batches using a differentially-private optimizer, see Abadi et al. (2016). Most importantly, we introduce a new strategy, which leverages the groups argument in PyTorch's convolution: by considering samples in the batches as different input channels, we are able to process them in parallel, while still obtaining results for each of the channels, i.e. they are not automatically reduced, as done for the batch dimension.

Running benchmarks

NOTE: all benchmarks were done on a n1-standard-8 instance on GCP, with a Nvidia P100 GPU; the image used was based on Ubuntu 18.04, with Python 3.5.3 and PyTorch 1.1 installed

For obtaining similar benchmarks as those shown in the report, you should first install the gradcnn package, then run code/benchmarks/run_test.sh:

cd code
pip3 install --user .
cd benchmarks
./run_test.sh

The benchmark consists in iterating the training of a given CNN for a few batches; parameters are specified inside the script, please check run.py for more information. Three different strategies will be used: naive, multi and crb. For instance, on a n1-standard-8 instance at GCP with a P100, each run of naive should take around 0.5s, each run of multi 0.3s, and each run of crb, 0.1s. Pickle files containing more information on the benchmarks will be created.

Note that this effect isn't noticeable if there is no GPU on your machine. On a CPU, all three strategies lead to comparable runtimes.

Alternatively, one can run run_gradcheck.sh to print the average gradient obtained using all the three strategies, during the first 5 batches. This indicates that all of them provide approximately (but not exactly) the same gradient.

Finally, the script run_all.sh will run exact the same benchmarks as in the Figure 1 of the manuscript. After generating the pickle files with this script, Figure 1 can be reproduced by means of plot.py.

MNIST example

There is also a MNIST example in the examples folder, built with minimal changes to the default PyTorch MNIST example. It consists in training a network with 4 layers, 2 of which are convolutional. To run the standard example, without DP, just type python3 mnist.py. In a n1-standard-8 instance at GCP with a P100, one gets, after one epoch

Test set: Average loss: 0.0397, Accuracy: 9877/10000 (99%)
Elapsed time: 19.46s

Running python3 mnist.py --dp gives

Test set: Average loss: 0.5463, Accuracy: 8840/10000 (88%)
Elapsed time: 20.36s

While the accuracy is reduced--as expected, due to the noisy, norm-bounded gradients--the runtime is virtually the same.

We also note that, in order to have the training to be differentially-private, two changes were performed to the script:

  1. Replacing import torch.nn as nn by from gradcnn import crb as nn, thus using our code to compute per-example gradients automatically when backprop is done. In practice, this leads to the creation of a bgrad attribute for each parameter, which contains the per-example gradients.

  2. Replacing the optimizer by a new one which is built using the following code

    model = Net().to(device)
    if args.dp:
      model.get_detail(True)
      Optimizer = make_optimizer(
          cls=optim.Adam,
          noise_multiplier=1.1,
          l2_norm_clip=1.0,
      )
    else:
      Optimizer = optim.Adam

grad-cnns's People

Contributors

amanoel avatar samlobel avatar

Watchers

James Cloos 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.