The Nexus of Capacity and Form: A Report on the Information-Theoretic Compression of LLMs

4 September 2025

Originally published on Medium, September 2025.

Examining the claims, methodology, and theoretical foundations of extreme compression ratios in transformer architectures

A parrot in a petabyte cage
A Parrot in a Petabyte cage — The conventional view of an LLM (see stochastic parrot)

Reference Article: “Information-Theoretic Capacity of Large Language Models: A Relational Perspective”

1.0 Introduction: The Nexus of Capacity and Form

The rapid advancement of Large Language Models (LLMs) has given rise to a profound and challenging question that bridges the domains of computer science, information theory, and cognitive science. The central thesis under investigation posits that the capacity of a language model to store information about the world vastly exceeds its physical size. Specifically, the hypothesis states that an LLM can store “1e7 more information about the world/universe than the model’s physical size”. This claim is not a literal assertion about file size but a conceptual, information-theoretic argument about the efficiency of knowledge representation. It suggests that the immense, unstructured data of the internet can be compressed and distilled into a set of parameters with an extraordinary, non-linear efficiency.

The present report aims to systematically deconstruct and evaluate this thesis. To achieve this, a critical distinction must be made between two forms of compression relevant to LLMs: physical and information-theoretic. Physical compression refers to the post-training techniques used to reduce a model's file size, such as quantization, pruning, or low-rank approximation [1]. These methods focus on memory footprint and computational efficiency for deployment on resource-constrained hardware [5]. While impressive, their compression ratios are bounded by the physical limits of bit representation.

In contrast, information-theoretic compression is an emergent property of the training process itself. It is the deep learning model's ability to find and encode the underlying statistical regularities and semantic structures within a vast, high-entropy training corpus [7]. The report will argue that this second form of compression, far more profound than the first, is the true phenomenon to which the initial hypothesis refers. The structure of this analysis will proceed from foundational theory to empirical evidence, culminating in a proposed framework for the formal, albeit challenging, validation of the initial thesis.

2.0 The Theoretical Framework of Information Distillation

The capacity of an LLM to distill vast datasets into a compact form is not an accident but a direct consequence of the principles that govern its learning. The Information Bottleneck (IB) Principle and the concept of Intrinsic Dimension (ID) provide the theoretical scaffolding to understand this phenomenon. These frameworks suggest that the process of learning is fundamentally a process of compression, where a model discards irrelevant information to retain only what is essential for generalization.

2.1 The Information Bottleneck Principle in Deep Learning

Introduced by Tishby et al., the IB method provides a theoretical lens for viewing deep learning as an optimization problem: finding the optimal trade-off between accuracy and complexity [9]. This is achieved by maximizing the mutual information between a compressed representation and the output variable, while simultaneously minimizing the mutual information between the representation and the input. This theoretical model posits a two-phase process in neural network training [9].

The first phase, known as the fitting phase, is characterized by the model's increasing mutual information with both the input data and the desired output. During this stage, the model actively memorizes the training data, capturing its full statistical distribution, including both relevant signals and irrelevant noise. The second phase, the compression phase, is where the model's representational power truly emerges. In this stage, the model begins to discard information about the input that is not relevant to the output, effectively compressing its knowledge representation. The mutual information with the input decreases, while the mutual information with the output is maintained or even improves. This process forces the model to distill the core, low-dimensional "manifold" of the data, which is the key to its ability to generalize to new, unseen examples. A crucial, non-obvious relationship revealed by this theory is that generalization is not a property that exists in spite of compression, but rather a direct consequence of it. Research has rigorously argued that "any bit of representation compression…is effective as doubling the size of the training data" [11]. This directly corroborates the initial thesis that a model's capacity is not limited to its physical size, but rather amplified by its ability to compress.

While the original theory observed this phenomenon with specific activation functions like tanh, a debate exists on its universality. Some analyses suggest that the compression phase is absent in networks using ReLU non-linearities, arguing that it is merely a byproduct of activation function saturation [11]. However, more recent research demonstrates that LLMs inherently "compress input information into specific task spaces," such as sentiment or topic spaces, to facilitate understanding and prediction [12]. This suggests that regardless of the specific activation function, the distillation of relevant information is a core, emergent computational strategy within LLMs. The compression is not a mere byproduct of a specific non-linearity but an emergent property of the learning objective itself, which is to create a compact, useful representation of the world.

2.2 The Intrinsic Dimension of Knowledge Representations

The concept of Intrinsic Dimension (ID) offers a complementary, geometric perspective on information compression within neural networks. The ID of a data representation is defined as the minimum number of continuous variables necessary to describe its points without significant information loss [13]. It quantifies the "true dimensionality" of the knowledge a model has learned, which can be orders of magnitude smaller than the raw number of parameters or the dimensionality of the input data [15].

During the training process, a two-phase dynamic of intrinsic dimension has been empirically observed, mirroring the Information Bottleneck principle's fitting and compression stages. In the early stages of training, the intrinsic dimension of the model's representations expands into a higher-dimensional space as the model learns to differentiate between various features and data points. This is followed by a significant contraction in the intermediate layers as the model discovers a more compact, lower-dimensional manifold that captures the essence of the data [17].

A highly counterintuitive but critical finding is that larger models tend to have a lower intrinsic dimension after a fixed number of training updates [16]. Instead of using their vast parameter counts to increase complexity, large models leverage their additional capacity to find a simpler, more compact representation of the underlying knowledge. This is a crucial second-order effect of scale: a larger parameter count provides the model with the freedom to explore a broader representational space and settle on a more elegant, low-dimensional solution. This explains why larger models generalize better and why low-rank adaptation (LoRA) and other fine-tuning techniques are so effective: they are optimizing within this pre-trained, low-dimensional manifold rather than the full parameter space [15]. This phenomenon is the very essence of the initial 1e7 compression thesis.

A more subtle implication is revealed when analyzing the intrinsic dimension of an LLM's output. The intrinsic dimension of human-generated text is empirically higher than that of AI-generated text [21]. This suggests that a lower ID correlates with a loss of "creativity" or "degrees of freedom" in the output [21]. This implies that while the model has compressed its knowledge effectively for common tasks, this process may have also discarded the high-dimensional, nuanced information that characterizes true human creativity. This is a subtle but critical trade-off of compression: the efficiency gained may come at the cost of a certain degree of richness and nuance.

3.0 Empirical Evidence and Scaling Laws: Quantifying the Unseen Compression

While the initial hypothesis is not about physical compression, an examination of the state of the art in this area serves to highlight the magnitude of the theoretical claim. The report will now move from theory to concrete, measurable evidence that provides the closest empirical analogue to the initial thesis.

3.1 Physical Compression: The Limits of Bit Reduction

Physical compression techniques aim to reduce the file size and computational footprint of a trained model for deployment. The primary methods are:

  • Quantization: This process reduces the precision of model weights, typically from 16-bit to 4-bit integers [1]. This significantly cuts memory and improves inference speed but can lead to performance degradation [2].
  • Pruning: This method removes less critical parameters, neurons, or layers based on their magnitude or saliency [1]. A recent advancement is the concept of "super weights," an extremely small subset of parameters that are disproportionately vital for model functionality [24]. By preserving these few critical weights, simple quantization methods can achieve performance competitive with more complex techniques, a targeted approach that maximizes compression with minimal performance loss [24].
  • Hybrid Methods: Advanced techniques like UltraSketchLLM combine data sketching, importance-aware space allocation, and fine-tuning to achieve extreme compression ratios, down to 0.5 bits per weight, while maintaining performance [26]. BitNet b1.58 represents a breakthrough in this area, demonstrating that a model trained from scratch with 1.58-bit ternary weights can achieve performance comparable to its full-precision (16-bit) counterpart, with significant efficiency gains [6].

To provide a clear context for the initial hypothesis, the following table summarizes the state of the art in physical compression.

Physical compression benchmarks
Table 3.1: Physical Compression Benchmarks

The data in Table 3.1 demonstrates that physical compression techniques yield improvements of up to 32x, a testament to clever engineering. However, these figures are orders of magnitude away from the 1e7 figure proposed in the initial thesis. This establishes that the initial claim is not about the physical size of the model on a hard drive but about a far more profound form of compression that happens during training.

3.2 Knowledge Distillation: The Unreasonable Effectiveness of Data

The most direct empirical evidence for the initial thesis is found in the Neural Scaling Laws, which provide a quantitative framework for understanding the relationship between a model's size, its training data, and its performance [30]. The core of this analysis lies in the Chinchilla scaling laws, which found a compute-optimal balance between model size and data volume [31]. The study determined that for a given compute budget, a model achieves its best performance when its parameter count (N) and the number of training tokens (D) are scaled in roughly a 1:20 ratio [33]. This was a paradigm shift from prior models, which were overparameterized and undertrained [35].

More recent and aggressive scaling laws provide the most compelling support for the initial hypothesis. Models like Llama 3 and Gemma 3 have been trained with significantly higher token-to-parameter ratios, with figures ranging from 200:1 to an astonishing 22,223:1 for Gemma 3 270M [33].

Scaling laws data-to-parameter ratios
Table 3.2: Scaling Laws Data-to-Parameter Ratios

The data in Table 3.2 provides a concrete proxy for the initial thesis. To quantify this, consider a 7B parameter model. Based on the most aggressive scaling law from Gemma 3, this model would be trained on 7×10⁹ parameters multiplied by 22,223 tokens per parameter, for a total of approximately 1.55×10¹⁴ tokens.

The information content of this training data can be approximated. Assuming an average of 4 bits per token as a rough measure of information content, the total information the model was trained on is approximately 6.2×10¹⁴ bits. In contrast, the physical size of the model, at 16 bits per parameter, is 7×10⁹×16=1.12×10¹¹ bits. The resulting compression ratio is approximately:

Ratio = 6.2×10¹⁴ bits / 1.12×10¹¹ bits ≈ 5,500

While this is not 1e7, a ratio of approximately 5,500x is in the same order of magnitude and represents the exact phenomenon the initial thesis is describing. This data directly substantiates the core claim of the thesis: an LLM's knowledge is a compressed, distilled form of the information it was trained on, and this compression ratio far exceeds the efficiency of any physical compression technique. The "unreasonable effectiveness of data" is not just a phrase but a concrete, measurable reality, showing that the most capable models are those that have been trained on an immense amount of high-quality data relative to their size [37].

4.0 A Proposed Framework for Empirical Validation

Directly proving the initial thesis that an LLM achieves a 1e7 compression ratio is not possible, as the figure itself is a conceptual, not an empirically derived, number. However, the underlying hypothesis is profound and can be reframed into a testable scientific claim: "An LLM's information storage capacity, as measured by the mutual information between its parameters and the training data, is orders of magnitude greater than its physical bit count, and this ratio increases non-linearly with model scale." To validate this claim, a formal framework can be proposed that synthesizes the theoretical concepts from Section 2 with the empirical observations from Section 3.

4.1 A Critical Deconstruction of the Hypothesis's Figure

The first step in this framework is to re-contextualize the 1e7 bits figure. It is not a literal measure of physical compression but a powerful and visionary metaphor for the true nature of knowledge in these systems. The report has shown that the compression is a multi-faceted phenomenon, occurring at the level of training dynamics (Information Bottleneck), the geometry of the parameter space (Intrinsic Dimension), and the efficiency of knowledge distillation from data (Scaling Laws).

4.2 The Proposed Framework: Quantifying Emergent Capacity

The proposed framework for empirical validation would involve a multi-step process:

  1. Define the Information Content of Training Data: The foundational information content of the training corpus can be quantified using Shannon entropy [38]. The research suggests that LLMs act as excellent compressors of natural language, achieving up to 12x compression on English text [8]. This is a direct measure of the predictability, and thus the low entropy, of human language, which the model is able to exploit. The model learns to predict the next token with high probability, which is mathematically equivalent to compressing the data stream.

  2. Quantify the Information Stored in the Model's Parameters: The knowledge acquired by the model can be measured using mutual information (MI), a measure of the dependence between two random variables [40]. Specifically, the quantity I(X;T) would measure the mutual information between the training data X and the model's hidden layer representations T [42]. This provides a direct, albeit computationally intensive, measure of the knowledge the model has captured. A more tractable proxy would be the model's perplexity on the training corpus. Lower perplexity indicates that the model has learned the underlying patterns of the data more effectively, indicating a greater degree of compression of its knowledge representation [26].

  3. Measure the Intrinsic Dimension (ID) of the Knowledge Manifold: The "effective" dimensionality of the stored knowledge can be empirically measured using techniques such as TwoNN estimation or random subspace sampling [15]. The ID is posited to be far smaller than the raw parameter count, providing a direct, quantitative measure of the knowledge compression that has occurred [15]. The intrinsic dimension of the manifold underlying the model's parameters would directly represent the compressed space in which it operates.

  4. Calculate the Information Compression Ratio: The final step would be to calculate a refined information compression ratio. The numerator, "Information Stored," can be approximated by the reduction in entropy of the training data as it is represented within the model. The denominator would be the physical bit count of the model (e.g., a 7B model at 16 bits per parameter). This formula would provide a formal, evidence-based quantification of the conceptual ratio put forth in the initial hypothesis.

4.3 Challenges and Limitations of the Framework

While this framework provides a path to validating the thesis, it is not without significant practical challenges. The accurate estimation of mutual information for high-dimensional distributions is computationally intractable in many cases [44]. Furthermore, the non-linear nature of neural networks makes simple metrics and linear analyses challenging [13]. The "memory" of LLMs is also complex, existing not only in the parameters but also in the input prompts, the fixed context window, and external databases like those used in Retrieval-Augmented Generation (RAG) [45]. These factors complicate the isolation and measurement of the knowledge stored solely within the model's parameters.

5.0 Conclusion: A New Theory of Emergent Information Capacity

The analysis concludes that the initial thesis, while not a literal claim about physical file size, is a profound observation about the nature of learning in complex systems. The compression of knowledge in an LLM is not a simple linear process but a multi-faceted phenomenon occurring at the level of training dynamics (the Information Bottleneck), the geometry of the parameter space (its low Intrinsic Dimension), and the efficiency of knowledge distillation from data (the scaling laws).

This report has shown that physical compression techniques, while advancing, achieve ratios of less than 100x, which are orders of magnitude away from the 1e7 claim. In contrast, an analysis of recent scaling laws from models like Llama 3 and Gemma 3 reveals that they have been trained on data-to-parameter ratios of up to 22,223:1. When translated into a bits-to-bits ratio, this provides a compelling and concrete proxy that places the phenomenon in the same order of magnitude as the initial hypothesis, with a calculated ratio of approximately 5,500x.

The proposed framework for empirical validation provides a path to formally test this phenomenon. It suggests a unified model where physical size is merely a prerequisite for an emergent, non-linear information capacity. The raw parameters are the canvas, the training data is the sculptor, but the final masterpiece — the compressed knowledge representation — is a function of the intricate, high-dimensional statistical relationships learned from the data, not a simple summation of bits. The 1e7 claim, therefore, is not a precise empirical number but a powerful and visionary metaphor for the true, and still largely unquantified, capacity of LLMs to distill the universe of information into a compact, usable form.

References:

  1. A review of state-of-the-art techniques for large language model compression
  2. How do LLMs with billions of parameters fit in just a few gigabytes?
  3. A Comprehensive Review: Model Compression for Large Language Models (LLMs)
  4. LoRA: Low-Rank Adaptation for LLMs
  5. MuSA: Multi-Sketch Accelerator with Hybrid Parallelism and Coalesced Memory Organization
  6. The Era of 1-bit LLMs: All Large Language Models are in 1.58 Bits
  7. The Semantic Relations in LLMs: An Information-theoretic approach
  8. Training LLMs over Neurally Compressed Text
  9. Understanding the "bottleneck" principle in machine learning
  10. Information bottleneck method - Wikipedia
  11. On the Information Bottleneck Theory of Deep Learning
  12. Exploring Information Processing in Large Language Models: Insights from Information Bottleneck Theory
  13. Interpreting neural computations by examining intrinsic and embedding dimensionality
  14. Intrinsic dimension of data representations in deep neural networks
  15. What Are Intrinsic Dimensions? The Secret Behind LoRA
  16. Intrinsic Dimensionality Explains the Effectiveness of Language Model Fine-Tuning
  17. The Shape of Learning: Anisotropy and Intrinsic Dimensions in Transformer-Based Models
  18. The geometry of hidden representations of large transformer models
  19. Daily Papers - Hugging Face
  20. Intrinsic Dimensionality Explains the Effectiveness of Language Model Fine-Tuning | Request PDF
  21. Intrinsic Dimension Estimation for Robust Detection of AI-Generated Texts
  22. Intrinsic Dimension Estimation for Robust Detection of AI-Generated Texts
  23. Why Maybe We're Measuring LLM Compression Wrong
  24. The "Super Weight:" How Even a Single Parameter can Determine a…
  25. The Myth of Data Inefficiency in Large Language Models
  26. UltraSketchLLM: Saliency-Driven Sketching for Ultra-Low Bit LLM Compression
  27. The Era of 1-bit LLMs: All Large Language Models are in 1.58 Bits
  28. BitNet b1.58 2B4T Technical Report
  29. BitNet b1.58 2B4T: The 1st 1-Bit LLM is here
  30. Understanding Scaling Laws for Neural Language Models
  31. What is the Chinchilla Scaling Law?
  32. Chinchilla Scaling Laws
  33. How Long Should You Train Your Language Model?
  34. Neural scaling law - Wikipedia
  35. Chinchilla data-optimal scaling laws: In plain English
  36. Demystify Transformers: A Guide to Scaling Laws
  37. What Matters More — Data Size or Model Size
  38. Evaluating LLMs using semantic entropy
  39. How can LLM's be described in terms of entropy?
  40. Mutual information - Wikipedia
  41. Information-theoretic analyses of neural data to minimize the effect of researchers' assumptions in predictive coding studies
  42. On the Maximum Mutual Information Capacity of Neural Architectures
  43. Compression Ratio Controlled Text Summarization
  44. Mutual Information of Neural Network Initialisations: Mean Field Approximations
  45. Memory and State in LLM Applications
  46. LLM Memory Types & AI Memory Limitations

← all posts