DCCVLGNEMay 19, 2017

Espresso: Efficient Forward Propagation for BCNNs

arXiv:1705.07175v24 citationsHas Code
Originality Incremental advance
AI Analysis

This work provides an efficient solution for applications requiring fast and memory-efficient neural network inference, though it is incremental as it builds on existing binary neural network methods.

The paper tackles the problem of optimizing computational performance and memory footprint for the prediction phase of deep neural networks by introducing Espresso, a library for binary convolutional neural networks that achieves a speed-up of approximately two orders of magnitude compared to existing implementations.

There are many applications scenarios for which the computational performance and memory footprint of the prediction phase of Deep Neural Networks (DNNs) needs to be optimized. Binary Neural Networks (BDNNs) have been shown to be an effective way of achieving this objective. In this paper, we show how Convolutional Neural Networks (CNNs) can be implemented using binary representations. Espresso is a compact, yet powerful library written in C/CUDA that features all the functionalities required for the forward propagation of CNNs, in a binary file less than 400KB, without any external dependencies. Although it is mainly designed to take advantage of massive GPU parallelism, Espresso also provides an equivalent CPU implementation for CNNs. Espresso provides special convolutional and dense layers for BCNNs, leveraging bit-packing and bit-wise computations for efficient execution. These techniques provide a speed-up of matrix-multiplication routines, and at the same time, reduce memory usage when storing parameters and activations. We experimentally show that Espresso is significantly faster than existing implementations of optimized binary neural networks ($\approx$ 2 orders of magnitude). Espresso is released under the Apache 2.0 license and is available at http://github.com/fpeder/espresso.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes