项目作者: plumerai

项目描述 :
Implementation for the paper "Latent Weights Do Not Exist: Rethinking Binarized Neural Network Optimization"
高级语言: Python
项目地址: git://github.com/plumerai/rethinking-bnn-optimization.git
创建时间: 2019-06-03T16:43:38Z
项目社区:https://github.com/plumerai/rethinking-bnn-optimization

开源协议:Apache License 2.0

下载


Rethinking Binarized Neural Network Optimization

arXiv:1906.02107 License: Apache 2.0 Code style: black

Implementation for paper “Latent Weights Do Not Exist: Rethinking Binarized Neural Network Optimization“.

A poster illustrating the proposed algorithm and its relation to the previous BNN optimization strategy is included at ./poster.pdf.

Note: Bop is now added to Larq, the open source training library for BNNs. We recommend using the Larq implementation of Bop: it is compatible with more versions of TensorFlow and will be more actively maintained.

Requirements

You can also check out one of our prebuilt docker images.

Installation

This is a complete Python module. To install it in your local Python environment, cd into the folder containing setup.py and run:

  1. pip install -e .

Train

To train a model locally, you can use the cli:

  1. bnno train binarynet --dataset cifar10

Reproduce Paper Experiments

Hyperparameter Analysis (section 5.1)

To reproduce the runs exploring various hyperparameters, run:

  1. bnno train binarynet \
  2. --dataset cifar10 \
  3. --preprocess-fn resize_and_flip \
  4. --hparams-set bop \
  5. --hparams threshold=1e-6,gamma=1e-3

where you use the appropriate values for threshold and gamma.

CIFAR-10 (section 5.2)

To achieve the accuracy in the paper of 91.3%, run:

  1. bnno train binarynet \
  2. --dataset cifar10 \
  3. --preprocess-fn resize_and_flip \
  4. --hparams-set bop_sec52 \

ImageNet (section 5.3)

To reproduce the reported results on ImageNet, run:

  1. bnno train alexnet --dataset imagenet2012 --hparams-set bop
  2. bnno train xnornet --dataset imagenet2012 --hparams-set bop
  3. bnno train birealnet --dataset imagenet2012 --hparams-set bop

This should give the results listed below. Click on the tensorboard icons to see training and validation accuracy curves of the reported runs.





















Network Bop - top-1 accuracy
Binary Alexnet 41.1%
tensorboard
XNOR-Net 45.9%
tensorboard
Bi-Real Net 56.6%
tensorboard