LGOct 16, 2023

Taming the Sigmoid Bottleneck: Provably Argmaxable Sparse Multi-Label Classification

arXiv:2310.10443v211 citationsh-index: 23Has Code
Originality Incremental advance
AI Analysis

This addresses a fundamental limitation in multi-label classification for tasks with many labels, such as large-scale tagging or annotation, though it is an incremental improvement over existing methods.

The paper tackles the sigmoid bottleneck in multi-label classification, which causes exponentially many unargmaxable label combinations, and introduces a Discrete Fourier Transform output layer that prevents this issue while matching F1@k scores with up to 50% fewer parameters.

Sigmoid output layers are widely used in multi-label classification (MLC) tasks, in which multiple labels can be assigned to any input. In many practical MLC tasks, the number of possible labels is in the thousands, often exceeding the number of input features and resulting in a low-rank output layer. In multi-class classification, it is known that such a low-rank output layer is a bottleneck that can result in unargmaxable classes: classes which cannot be predicted for any input. In this paper, we show that for MLC tasks, the analogous sigmoid bottleneck results in exponentially many unargmaxable label combinations. We explain how to detect these unargmaxable outputs and demonstrate their presence in three widely used MLC datasets. We then show that they can be prevented in practice by introducing a Discrete Fourier Transform (DFT) output layer, which guarantees that all sparse label combinations with up to $k$ active labels are argmaxable. Our DFT layer trains faster and is more parameter efficient, matching the F1@k score of a sigmoid layer while using up to 50% fewer trainable parameters. Our code is publicly available at https://github.com/andreasgrv/sigmoid-bottleneck.

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