aninokumar commited on
Commit
498da82
·
verified ·
1 Parent(s): 88f4200

Delete PAPER.md

Browse files
Files changed (1) hide show
  1. PAPER.md +0 -107
PAPER.md DELETED
@@ -1,107 +0,0 @@
1
-
2
- ## ICML Submission Draft: The Entropy-Harmonic RAG System
3
-
4
- ### Title: **Entropy-Harmonic RAG: Achieving Logarithmic Retrieval Complexity and Extreme Efficiency via Transformer Distillation**
5
-
6
- **Authors:** Aninokumar
7
- **Affiliation:** Stealth Hut
8
- **Contact:** [Aninokumar@StealthHut.com]
9
-
10
- ---
11
-
12
- ## Abstract
13
-
14
-
15
- We present Entropy-Harmonic RAG, a retrieval framework uniting harmonic distillation and entropy-based document
16
- partitioning. Starting from Qwen3-Embedding-8B, we compress 8 GB of contextual parameters into a 592 MB static matrix (
17
- 4096 D) through a single distillation step that preserves spectral semantics.
18
- To recover contextual expressivity, we introduce Entropy-Based Radial Chunking and a Semantic Binary Search
19
- that enables logarithmic-time navigation across corpora.
20
- Internal stress tests on ambiguity, negation, and technical-jargon resolution demonstrate parity with
21
- the parent dynamic model while achieving 80× speed-ups.
22
- This validates that static embeddings, when paired with entropy-aware retrieval,
23
- can match dynamic transformers for RAG under severe resource constraints.
24
-
25
- ---
26
-
27
- ## 1 Introduction
28
-
29
- The effectiveness of RAG is determined by the quality and speed of its retrieval mechanism. While deep transformer models provide high-quality embeddings, their size ($\approx 8$GB) and inference latency limit deployment scalability and latency-sensitive applications. Furthermore, the standard practice of fixed-size chunking often leads to context fragmentation, degrading the quality of retrieved passages.
30
-
31
- Our contribution addresses these limitations by proposing a full-stack architectural overhaul, validated by empirical tests on complex, high-jargon documents:
32
-
33
- 1. **Extreme Efficiency:** We present the `Qwen3_8b_embedding_m2v_distilled` model, a statically quantized (int8) embedding lookup table achieving near-instantaneous inference.
34
- 2. **Semantic Coherence:** We introduce **Entropy-Based Radial Chunking** which uses high-information-density tokens as semantic anchors, guaranteeing clean, topic-coherent document partitions.
35
- 3. **Logarithmic Retrieval:** We implement a **Semantic Binary Search** that leverages the structured semantic map to navigate the corpus in $O(\log N)$ time, dramatically increasing scalability.
36
-
37
- ---
38
-
39
- ## 2 Harmonic Distillation and Model Efficiency
40
-
41
- ### 2.1 The Distillation Process
42
-
43
- To decouple the semantic quality of the 8B Qwen3-Embedding model from its computational overhead, we perform a one-time distillation into a static vector lookup table.
44
-
45
- **Harmonic Decomposition:** Instead of conventional knowledge distillation (KD) techniques, we utilize a modified **Model2Vec (m2v)** approach focused on feature extraction. For each token embedding $\mathbf{e}_t \in \mathbb{R}^{4096}$, we apply a mathematical decomposition to isolate the *fundamental semantic components*—the "harmonic signature"—that define the token's core meaning, stripping away dynamic contextual noise. This ensures the resulting static vector $\mathbf{s}_t$ preserves maximum semantic information within the high-dimensional space.
46
-
47
- **Quantization:** The final static embedding matrix, $\mathbf{S} \in \mathbb{R}^{151,665 \times 4096}$, is quantized to int8. This compression reduces the model size from $\approx 8$GB to **592MB**. Inference is reduced to a simple mean pooling and L2 normalization:
48
- $$ \mathbf{E}_{sentence} = \text{Normalize}\left(\frac{1}{|T|} \sum_{t \in T} \mathbf{s}_t\right) $$
49
-
50
- ### 2.2 Mitigation of Context Loss
51
-
52
- The primary drawback of static embeddings is context-independence (e.g., disambiguating "bank"). We demonstrate that when the retrieval architecture (Section 3) forces tokens with similar local contexts into the same highly coherent chunk, the resulting **mean-pooled chunk embedding** is sufficiently disambiguated for high-precision retrieval (validated in Section 4).
53
-
54
- ---
55
-
56
- ## 3 The Entropy-Based Retrieval Architecture
57
-
58
- ### 3.1 Entropy-Based Radial Chunking
59
-
60
- We define the information density, or **Semantic Entropy** ($\mathcal{H}$), of a token $t$ using three factors:
61
-
62
- 1. **Vector Entropy ($\mathcal{H}_{v}$):** Shannon entropy of the normalized embedding components.
63
- 2. **Vector Variance ($\sigma_{v}^2$):** Dispersion of the vector components (measures specificity).
64
- 3. **Token Rarity ($\mathcal{R}$):** Derived directly from the quantized model’s internal weights tensor, $\mathbf{W}$, providing an inherent importance score.
65
-
66
- The combined score $\mathcal{H}_t = \mathcal{H}_v \cdot (1 + \alpha \sigma_v^2) \cdot (1 + \beta \mathcal{R})$ is calculated for every token.
67
-
68
- **Partitioning:** Tokens scoring above the 99th percentile of $\mathcal{H}$ are designated **Semantic Centers ($C_i$)**. The document is partitioned by slicing exactly at the midpoint token position between every adjacent pair of centers ($C_i$ and $C_{i+1}$). This guarantees perfect, non-overlapping coverage where boundaries align with natural thematic shifts.
69
-
70
- ### 3.2 Semantic Binary Search ($O(\log N)$ Retrieval)
71
-
72
- Given the structured partitioning, we treat the document as a semantic map, enabling logarithmic search complexity:
73
-
74
- 1. **Initialization:** The query embedding $\mathbf{E}_q$ finds the initial chunk $Ch_0$ most similar to its center token $C_0$.
75
- 2. **Directional Analysis:** Within $Ch_0$, we identify internal high-entropy tokens ($C_{local}$) on the left ($L$) and right ($R$) sides, segmented by $C_0$.
76
- 3. **Navigation:** We calculate the aggregated similarity of $\mathbf{E}_q$ to the high-entropy vectors in $L$ vs. $R$. If $\text{Sim}(\mathbf{E}_q, L) > \text{Sim}(\mathbf{E}_q, R)$, the search navigates to the adjacent left chunk ($Ch_{-1}$); otherwise, it moves right to $Ch_{+1}$.
77
- 4. **Iteration:** This step is repeated, homing in on the most relevant semantic region. This process bypasses the linear comparison of $N$ chunks, achieving $O(\log N)$ search complexity.
78
-
79
- ---
80
-
81
- ## 4 Empirical Validation and Results
82
-
83
- We conducted three stages of stress testing on complex, high-jargon documents (covering technical reports and philosophical ambiguity) specifically designed to test the architectural boundaries.
84
-
85
- ### 4.1 Stress Test Results Summary
86
-
87
- | Challenge Type | Query Example | EH-RAG Performance | Conclusion |
88
- | :--- | :--- | :--- | :--- |
89
- | **Ambiguity Mitigation** | Differentiate "bank" (data vs. river). | **Perfect Success.** | Static model weakness is successfully overcome by chunk cohesion. |
90
- | **Negation & Synthesis** | Was *Möbius Fusion* ultimately used? (Answer requires synthesizing S2 and S4). | **Perfect Success.** | Confirms the binary search path captures argumentative flow and long-range dependencies. |
91
- | **Jargon Differentiation** | Separate *computational physics* (general criticism) from *computational physics* (Chronometric core). | **Perfect Success.** | Validates the high semantic purity of the 4096-D vectors and effective local entropy filtering. |
92
- | **Search Complexity** | Locate specific policy decision (Q8.1). | **Observed Logarithmic Path.** | Confirmed rapid, non-linear navigation by skipping irrelevant sections. |
93
-
94
- ### 4.2 Key Finding: Precision under Efficiency
95
-
96
- The validation confirmed that the EH-RAG system maintained **near-perfect retrieval precision** (5 out of 5 perfect scores on the ultimate test) while operating under constraints of **sub-millisecond inference** and a **92% model size reduction**. This refutes the conventional trade-off between semantic quality and deployment efficiency.
97
-
98
- ---
99
-
100
- ## 5 Conclusion and Future Work
101
-
102
- The **Entropy-Harmonic RAG** system presents a significant advance in scalable knowledge retrieval. By fusing extreme model distillation with an intelligent, entropy-driven architectural pipeline, we successfully demonstrate $O(\log N)$ semantic retrieval complexity in practice. This opens new possibilities for deploying high-fidelity RAG systems on edge devices and massive document corpora where resource limitations previously restricted performance.
103
-
104
- Future work will focus on optimizing the adaptive radius function and exploring EH-RAG integration with multilingual corpora, leveraging the base Qwen model's existing language capabilities.
105
-
106
- ---
107
- **Keywords:** RAG, Entropy, Transformer Distillation, Quantization, Logarithmic Search, Semantic Search, Model2Vec, Qwen.