Dispersion loss counteracts embedding condensation in small language models
E-Reverance
31 points
7 comments
July 03, 2026
Related Discussions
Found 5 related stories in 1010.2ms across 14,015 title embeddings via pgvector HNSW
- Introspective Diffusion Language Models zagwdt · 257 pts · April 14, 2026 · 51% similar
- Show HN: I built a tiny LLM to demystify how language models work armanified · 249 pts · April 06, 2026 · 50% similar
- A sleep-like consolidation mechanism for LLMs juxtapose · 195 pts · May 26, 2026 · 48% similar
- Constraint Decay: The Fragility of LLM Agents in Back End Code Generation wek · 210 pts · May 24, 2026 · 47% similar
- Efficient and Training-Free Single-Image Diffusion Models yorwba · 51 pts · June 07, 2026 · 46% similar
Discussion Highlights (4 comments)
lwansbrough
Anyone with a billion dollars want to try this and report back?
aetherspawn
It makes sense to me that distributing across more parameters results in models that can be quant more heavily (information theory - more bits available) I wonder if anyone has figured out how the information is compressed and calculated the amount of information an LLM can hold depending on its size
estebarb
That sounds very similar to what we know in self-supervised learning as representation collapse. I wonder if we could copy some of the anti-collapse mechanisms from SSL into GPT... after all, they are ways to increment the differential entropy. However, I'm not sure if it could be useful after all: any pure function cannot produce more entropy than the entropy it receives... and natural language as text has much less entropy than other domains... [edit: typos]
nighthawk454
Some potentially related stuff on the topic: Anisotropy in word embeddings dates back to at least 2017 with word2vec - where there were zero layers. The cone-shaped anisotropy in transformers is known since at least Gao et al. 2019. That lineage explained it fairly intuitively as an artifact of word frequency and softmax geometry (so a training dynamic). A variety of papers followed up by adding post-hoc ‘whitening’ steps (from classical statistics/NLP), then adding regularizers to the loss to penalize the anisotropy, eventually penalizing the covariance matrix (a la VICReg), and then the SIGReg method as a computationally much cheaper way to approximate the full covariance. As another commenter pointed out it’s also similar to the InfoNCE/contrastive learning objectives. Where terms to increase uniformity (spread out evenly) on the hyper sphere were added. Like the SimCSE (Gao 2021) paper or the excellent alignment/uniformity breakdown from Wang & Isola 2020. This proposed dispersion loss seems to be similar in that it pushes things apart by penalizing cosine similarity. Although this one works on the tokens within one sequence. Usually contrastive methods mean pool the sequences and then contrast against the other pooled sequences in the batch.