LGAIMLNov 8, 2017

Block-Sparse Recurrent Neural Networks

arXiv:1711.02782v1147 citations
Originality Incremental advance
AI Analysis

This addresses the problem of deploying efficient RNNs on devices and servers for domains like speech recognition and translation, though it is incremental as it builds on existing sparsity techniques.

The paper tackles the issue of inefficient speed-ups from sparse operations in RNNs by inducing block sparsity through pruning and group lasso regularization, achieving 80-90% sparsity with small accuracy loss and reducing model size by roughly 10x.

Recurrent Neural Networks (RNNs) are used in state-of-the-art models in domains such as speech recognition, machine translation, and language modelling. Sparsity is a technique to reduce compute and memory requirements of deep learning models. Sparse RNNs are easier to deploy on devices and high-end server processors. Even though sparse operations need less compute and memory relative to their dense counterparts, the speed-up observed by using sparse operations is less than expected on different hardware platforms. In order to address this issue, we investigate two different approaches to induce block sparsity in RNNs: pruning blocks of weights in a layer and using group lasso regularization to create blocks of weights with zeros. Using these techniques, we demonstrate that we can create block-sparse RNNs with sparsity ranging from 80% to 90% with small loss in accuracy. This allows us to reduce the model size by roughly 10x. Additionally, we can prune a larger dense network to recover this loss in accuracy while maintaining high block sparsity and reducing the overall parameter count. Our technique works with a variety of block sizes up to 32x32. Block-sparse RNNs eliminate overheads related to data storage and irregular memory accesses while increasing hardware efficiency compared to unstructured sparsity.

Foundations

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

Your Notes