Code Monkey home page Code Monkey logo

bitswap's Introduction

Bit-Swap

Code for reproducing results of Bit-Swap: Recursive Bits-Back Coding for Lossless Compression with Hierarchical Latent Variables, appearing at International Conference on Machine Learning 2019.

The code is written by Friso H. Kingma. The paper is written by Friso H. Kingma, Pieter Abbeel and Jonathan Ho.

Contents

  1. Introduction
  2. Code overview
  3. Requirements
  4. Launch
    1. Model training
    2. Compression
    3. Benchmark compressors
    4. Plots
  5. Demo (coming soon)
  6. Citation
  7. Questions

Introduction

We present a lossless compression scheme, called Bit-Swap, that results in compression rates that are empirically superior to existing techniques. Our work builds on BB-ANS that was originally proposed by Townsend et al, 2019. BB-ANS exploits the combination of the ''bits back'' argument (Hinton & Van Camp, 1993), latent variable models and the entropy encoding technique Asymmetric Numeral Systems (ANS) (Duda et al, 2015). We extended BB-ANS to be more efficient for hierarchical latent variable models, that are known to be better density estimators.

In one of the experiments, we compressed 100 unscaled and cropped images of ImageNet with Bit-Swap, BB-ANS and other benchmark compressors. Details of the experimental setup can be found here or in the paper. In this regime, Bit-Swap outperforms the other compression schemes. The experimental setup and results of the other experiments can be found in the paper.

Compression Scheme Rate (bits/dim)
Uncompressed 8.00
GNU Gzip 5.96
bzip2 5.07
LZMA 5.09
PNG 4.71
WebP 3.66
BB-ANS 3.62
Bit-Swap 3.51

Experimental setup: compression of unscaled and cropped ImageNet

For this experiment, we constructed our own train and test set of ImageNet images as described in the instructions here. We trained a model on random 32x23 pixel-patches of the constructed train set. Afterwards we

  1. independently took 100 images from the constructed test set
  2. cropped the images to multiples of 32 pixels on each side
  3. split the images up into grids of 32x32 pixel-blocks
  4. compressed the resulting sequence of pixel-blocks of every image with Bit-Swap and BB-ANS and finally
  5. calculated the average bitrate over the pixel-blocks of every image independently.

We also compressed the cropped images resulting from step 2 with other benchmark compressors.

Overview

Note: Before executing any of the scripts, look through the requirements section and make sure all the requirements are satisfied.

The repository consists of two main parts:

  • Training of the variational autoencoders.
  • Compression with Bit-Swap and BB-ANS using the trained models.

Scripts relating to training of the models on the training sets of

and on random 32x32 pixel-patches of

can be found in the subdirectory /model.

Scripts relating to compression with Bit-Swap and BB-ANS of the (partial) test sets of

and on 100 images independently taken from the test set of unscaled ImageNet, cropped to multiples of 32 pixels on each side

are in the top directory. The script for compression using the benchmark compressors (benchmark_compress.py) and the script for discretization of the latent space (discretization.py) can also be found in the top directory. The script imagenetcrop_compress.py also directly compresses the images with the benchmark compressors.

Requirements

The following is required to run the scripts:

  • Python (3.7)
  • OpenMPI and Horovod (0.16.0)
  • Numpy (1.15.4)
  • PyTorch (1.0.0)
  • Torchvision (0.2.1)
  • Tensorflow (1.13.1)
  • Tensorboard (1.31.1)
  • TensorboardX (1.6)
  • tqdm (4.28.1)
  • Matplotlib (3.0.2)
  • Scipy (1.1.0)
  • Scikit-learn (0.20.1)

Add the top directory of the repository to the $PYTHONPATH variable. For example:

export PYTHONPATH=$PYTHONPATH:~/bitswap

Installation instructions for OpenMPI + Horovod are available on the github page of Horovod.

Prepare ImageNet (32x32)

First download the downsized version of ImageNet here. Unpack the train and validation set directories in model/data/imagenet/train and model/data/imagenet/test respectively. After that, run

python create_imagenet.py

Prepare ImageNet (unscaled)

First download the unscaled ImageNet validation set here and the test set here. Unpack the images of both datasets in model/data/imagenet/train/class. After that, independently take 5000 images from this folder and move them into model/data/imagenet/test/class. In Ubuntu, this can be achieved with the following commands:

cd ~/bitswap/model/data/imagenetcrop/train/class
ls | shuf -n 5000 | xargs -i mv {} ~/bitswap/model/data/imagenetcrop/test/class

Pretrained model checkpoints

Pretrained (PyTorch) model checkpoints:

Launch

Model training

MNIST (on 1 GPU)
8 latent layers
python mnist_train.py --nz=8 --width=61
4 latent layers
python mnist_train.py --nz=4 --width=62
2 latent layers
python mnist_train.py --nz=2 --width=63
1 latent layer
python mnist_train.py --nz=1 --width=64
CIFAR-10 (on 8 GPU's with OpenMPI + Horovod)
8 latent layers
mpiexec -np 8 python cifar_train.py --nz=8 --width=252
4 latent layers
mpiexec -np 8 python cifar_train.py --nz=4 --width=254
2 latent layers
mpiexec -np 8 python cifar_train.py --nz=2 --width=255
1 latent layer
mpiexec -np 8 python cifar_train.py --nz=1 --width=256
ImageNet (32x32) (on 8 GPU's with OpenMPI + Horovod)
4 latent layers
mpiexec -np 8 python imagenet_train.py --nz=4 --width=254
2 latent layers
mpiexec -np 8 python imagenet_train.py --nz=2 --width=255
1 latent layer
mpiexec -np 8 python imagenet_train.py --nz=1 --width=256
ImageNet (unscaled) (on 8 GPU's with OpenMPI + Horovod)
4 latent layers
mpiexec -np 8 python imagenetcrop_train.py --nz=4 --width=256

Compression

MNIST
8 latent layers
python mnist_compress.py --nz=8 --bitswap=1
python mnist_compress.py --nz=8 --bitswap=0
4 latent layers
python mnist_compress.py --nz=4 --bitswap=1
python mnist_compress.py --nz=4 --bitswap=0
2 latent layers
python mnist_compress.py --nz=2 --bitswap=1
python mnist_compress.py --nz=2 --bitswap=0
CIFAR-10
8 latent layers
python cifar_compress.py --nz=8 --bitswap=1
python cifar_compress.py --nz=8 --bitswap=0
4 latent layers
python cifar_compress.py --nz=4 --bitswap=1
python cifar_compress.py --nz=4 --bitswap=0
2 latent layers
python cifar_compress.py --nz=2 --bitswap=1
python cifar_compress.py --nz=2 --bitswap=0
ImageNet (32x32)
4 latent layers
python imagenet_compress.py --nz=4 --bitswap=1
python imagenet_compress.py --nz=4 --bitswap=0
2 latent layers
python imagenet_compress.py --nz=2 --bitswap=1
python imagenet_compress.py --nz=2 --bitswap=0
ImageNet (unscaled & cropped)
python imagenetcrop_compress.py

Benchmark compressors

python benchmark_compress.py

Plots

Cumulative Moving Averages (CMA) of the compression results
python cma.py
Stack plot of the different latent layers
python stackplot.py

DEMO: Compress your own image with Bit-Swap

Coming soon.

Citation

If you find our work useful, please cite us in your work.

@inproceedings{kingma2019bitswap,
  title={Bit-Swap: Recursive Bits-Back Coding for Lossless Compression with Hierarchical Latent Variables},
  author={Kingma, Friso H and Abbeel, Pieter and Ho, Jonathan},
  booktitle={International Conference on Machine Learning},
  year={2019}
}

Questions

Please contact Friso Kingma ([email protected]) if you have any questions.

bitswap's People

Contributors

fhkingma avatar

Watchers

 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.