LGMay 13, 2022

Structural Dropout for Model Width Compression

arXiv:2205.06906v11 citationsh-index: 1
Originality Incremental advance
AI Analysis

This provides a method for model width compression that allows non-experts to select memory-accuracy trade-offs without additional training, addressing resource inefficiency in ML models.

The paper tackles the problem of over-parametrized ML models by proposing structural dropout, which learns an importance ordering over features during a single training session, enabling pruning at inference time to reduce parameter size while retaining most accuracy, achieving significant compression with minimal accuracy loss.

Existing ML models are known to be highly over-parametrized, and use significantly more resources than required for a given task. Prior work has explored compressing models offline, such as by distilling knowledge from larger models into much smaller ones. This is effective for compression, but does not give an empirical method for measuring how much the model can be compressed, and requires additional training for each compressed model. We propose a method that requires only a single training session for the original model and a set of compressed models. The proposed approach is a "structural" dropout that prunes all elements in the hidden state above a randomly chosen index, forcing the model to learn an importance ordering over its features. After learning this ordering, at inference time unimportant features can be pruned while retaining most accuracy, reducing parameter size significantly. In this work, we focus on Structural Dropout for fully-connected layers, but the concept can be applied to any kind of layer with unordered features, such as convolutional or attention layers. Structural Dropout requires no additional pruning/retraining, but requires additional validation for each possible hidden sizes. At inference time, a non-expert can select a memory versus accuracy trade-off that best suits their needs, across a wide range of highly compressed versus more accurate models.

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