This mini-project contains code for building Binary, Ternary and N-bit Quantized Convolutional Neural Networks with Keras or Tensorflow.
Low Precision Networks have recently gained popularity due to their applications in devices with low-compute capabilities. During the forward pass, QNNs drastically reduce memory size and accesses, and replace most arithmetic operations with bit-wise operations.
Various Binarization, Ternarization and Quantization schemes are published for weights and activations.
Image Source: Minimum Energy Quantized Neural Networks
Binarization function used in the experiment is deterministic binary-tanh which is placed in binary_ops.py
The recommended version for running the experiments is Python3.
- Follow the installation guide on Tensorflow Homepage for installing Tensorflow-GPU or Tensorflow-CPU.
- Follow instructions outlined on Keras Homepage for installing Keras.
The skeletal overview of the project is as follows:
.
├── binarize/
│ ├── binary_layers.py # Custom binary layers are defined in Keras
│ └── binary_ops.py # Binarization functions for weights and activations
|
├── ternarize/
│ ├── ternary_layers.py # Custom ternarized layers are defined in Keras
│ └── ternary_ops.py # Ternarization functions for weights and activations
|
├── quantize/
│ ├── quantized_layers.py # Custom quantized layers are defined in Keras
│ └── quantized_ops.py # Quantization functions for weights and activations
|
├── base_ops.py # Stores generic operations
├── binary_net.py # Implementation of Binarized Neural Networks
├── ternary_net.py # Implementation of Ternarized Neural Networks
└── quantized_net.py # Implementation of Quantized Neural Networks
In the root directory, to run the examples use:
python3 {example}_net.py # for binary and ternary net
python3 quantized_net.py -nb N # For quantized net, replace N with the number of bits you want to quantize the weights and activations to. (default value of N =4)
Also, you can import the layers directly in your own Keras or Tensorflow code. Read this blog to know how to use Keras layers in Tensorflow
This work wouldn't have been possible without the help from the following repos: