CLJul 20

Convolution for Large Language Models

arXiv:2607.1841316.3h-index: 10
Predicted impact top 45% in CL · last 90 daysOriginality Synthesis-oriented
AI Analysis

For LLM practitioners, this provides a simple, parameter-efficient method to inject local inductive bias into Transformers, though the gains are incremental.

The paper shows that adding lightweight depthwise convolutions to Qwen3 Transformer blocks improves average accuracy on seven downstream benchmarks by less than 0.01% parameter increase, enhancing local token interaction.

Large language models (LLMs) largely rely on Transformers, where self-attention provides global token interaction but does not explicitly encode the locality of natural language. We study whether lightweight depthwise convolutions can supply this local inductive bias without materially increasing model size. Our macro-level ablation compares convolution at 17 locations in a Qwen3 Transformer block and finds the best results when convolution is applied to the projected queries, keys, and values before attention. A subsequent micro-level study favors a residual depthwise convolution with kernel size $k=3$, without additional normalization or activation. Across Qwen3 models and several pre-training data budgets, this design improves the average accuracy on seven downstream benchmarks while adding less than $0.01\%$ parameters. A representation-level case study further suggests that the convolution makes repeated token IDs more sensitive to their immediate context. These results support depthwise convolution as a lightweight complement to self-attention for modeling short-range token interactions.

Foundations

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

Your Notes