ITLGSPJul 15, 2021

Compressing Multisets with Large Alphabets using Bits-Back Coding

arXiv:2107.09202v211 citationsHas Code
AI Analysis

This work addresses a computational bottleneck in data compression for applications involving large alphabets, such as image and file compression, though it is incremental as it builds on bits-back coding and sequence compression techniques.

The authors tackled the problem of compressing multisets with large alphabets, where existing optimal-rate methods are too slow due to linear scaling with alphabet size, and achieved a method with computational complexity decoupled from alphabet size, enabling practical compression of multisets like images and JSON files.

Current methods which compress multisets at an optimal rate have computational complexity that scales linearly with alphabet size, making them too slow to be practical in many real-world settings. We show how to convert a compression algorithm for sequences into one for multisets, in exchange for an additional complexity term that is quasi-linear in sequence length. This allows us to compress multisets of exchangeable symbols at an optimal rate, with computational complexity decoupled from the alphabet size. The key insight is to avoid encoding the multiset directly, and instead compress a proxy sequence, using a technique called `bits-back coding'. We demonstrate the method experimentally on tasks which are intractable with previous optimal-rate methods: compression of multisets of images and JavaScript Object Notation (JSON) files. Code for our experiments is available at https://github.com/facebookresearch/multiset-compression.

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