Papers
Topics
Authors
Recent
Search
2000 character limit reached

Adaptive Context Compression (ACC)

Updated 6 July 2026
  • Adaptive Context Compression (ACC) is a family of methods that dynamically adjusts the retention and summarization of contextual signals to optimize resource usage.
  • It leverages techniques ranging from discounted context tree weighting to adaptive document selection in RAG, ensuring that critical data is prioritized over redundant information.
  • ACC methods enhance computational efficiency and latency by tailoring compression to task complexity while preserving essential context fidelity.

Adaptive Context Compression (ACC) denotes a family of methods in which the amount, representation, or effective memory of contextual information is adjusted to local conditions rather than fixed a priori. Across the literature, the term has been used in several technically distinct settings: lossless source coding by recency-weighted context models, parametric residue coding in multimedia compression, query-adaptive context reduction in retrieval-augmented generation (RAG), context management for long-running LLM interactions, training-time activation or trajectory compression, and commitment-preserving dialogue-state compaction. The common thread is adaptive control over what contextual signal is retained, summarized, compressed, or discarded, but the unit of adaptation varies substantially across papers: bits in a context tree, Laplace scale parameters, retrieved documents, conversational turns, semantic atoms, activations, or agent trajectories (O'Neill et al., 2012, Duda, 2019).

1. Terminological scope and historical emergence

The earliest use of the phrase in the supplied corpus appears in adaptive context tree weighting, where standard Context Tree Weighting (CTW) is modified into an adaptive context compression method by discounting older observations so that more recent symbols have larger influence on prediction and code length (O'Neill et al., 2012). In that formulation, ACC is still a probabilistic source model over bounded-depth prediction suffix trees, but the local statistics are no longer stationary.

A later multimedia usage shifts the meaning. In a parametric context adaptive Laplace framework, ACC denotes compressing prediction residues with a parametric distribution whose parameters are themselves made dependent on context and time. The emphasis is not on tree mixtures, but on modeling the residue distribution—especially the Laplace scale—as a compact function of context, optionally updated online (Duda, 2019).

From 2024 onward, the term becomes prominent in LLM systems, especially RAG. In AdaComp, ACC is a retrieval-aware, extractive compression framework that predicts the minimum top-kk retrieved documents required for successful generation (Zhang et al., 2024). In ACC-RAG, the same acronym refers to a framework with an offline hierarchical compressor and an online adaptive selector that progressively reveals compressed embeddings until sufficient context has accumulated (Guo et al., 24 Jul 2025). In AttnComp, ACC becomes an attention-guided extractive method that retains the minimal set of documents whose cumulative attention weights exceed a threshold (Luo et al., 22 Sep 2025). SARA extends the idea to a hybrid representation, combining natural-language spans with semantic compression vectors under a tight context budget (Jin et al., 8 Jul 2025).

Other papers broaden the term further. One line treats ACC as context management for long-running LLM conversations, combining importance-aware memory selection, coherence-sensitive filtering, and dynamic budget allocation (Fofadiya et al., 31 Mar 2026). Another formalizes context compression as preservation of semantic commitments rather than tokens, via Context Codec, semantic atoms, and verification metrics such as Critical Atom Recall and Weighted Atom Recall (Trukhina et al., 17 May 2026). In systems work, the same acronym is used for adaptive task-aware long-context compression in QA (Li et al., 3 Feb 2026), adaptive contextual compression for cache-augmented generation (Agrawal et al., 13 May 2025), and adaptive compression of activations during LLM training (Chen et al., 1 Aug 2025). This suggests that ACC is best understood not as a single algorithm, but as a recurring design pattern: adaptive control of contextual state under resource or fidelity constraints.

2. Probabilistic compression origins: CTW and parametric residue models

In Adaptive Context Tree Weighting, the base model is CTW over an unknown prediction suffix tree of bounded depth DD. CTW stores a Bayesian mixture compactly in a context tree; at each node nn, it mixes a local Krichevsky–Trofimov estimator with the weighted probabilities of the children. The recursive weighted probability is

Pnw(y1:t)={Pkt(y1:t ⁣n)if n is a leaf node 12Pkt(y1:t ⁣n)+12Pnw(y1:t)Pnrw(y1:t)otherwise,P^w_n(y_{1:t}) = \begin{cases} P_{kt}(y_{1:t}\!\mid_n) & \text{if } n \text{ is a leaf node} \ \frac{1}{2}P_{kt}(y_{1:t}\!\mid_n) + \frac{1}{2}P^w_{n\ell}(y_{1:t})P^w_{nr}(y_{1:t}) & \text{otherwise,} \end{cases}

and the root probability is used for arithmetic coding (O'Neill et al., 2012). The adaptive step is local: after observing a symbol, counts are decayed by a factor 1γ1-\gamma, so older evidence is continuously faded out. Fixed-rate, sequence-length based, partial-context visit-based, full-context visit-based, and leaf-context visit-based schedules are all defined in the paper. The method retains the same tree mixture architecture as CTW and therefore does not add extra computation or memory in principle; the change is entirely in how KT statistics are maintained. Empirically, the strongest variant is repeatedly ACTW2, the partial-context visit-based method with c=0.1,a=0.33c=0.1, a=0.33, and the paper’s central claim is careful: ACTW is never significantly worse on any individual file, while often improving compression on concatenated files and changing distributions (O'Neill et al., 2012).

The multimedia line replaces tree mixtures with parametric residue coding. The predictive coding setup is r=xμ(c)r = x - \mu(c), with rr modeled by a Laplace distribution

ρb(r)=12bexp ⁣(rb),\rho_b(r)=\frac{1}{2b}\exp\!\left(-\frac{|r|}{b}\right),

where b>0b>0 is the scale parameter (Duda, 2019). The ACC claim is that, rather than assigning each discrete context an independent scale estimate, one can use a parameterized function DD0, with forms such as

DD1

For adaptive time evolution, the paper gives exponential-moving-average updates,

DD2

and argues that this scales better than LOCO-I/JPEG-LS style context quantization into 365 independent bins (Duda, 2019). On 48 grayscale images, tested 4- and 11-parameter models turned out to provide similar performance as the 365-parameter LOCO-I model, while enabling reduced header size, better generalization, and higher-dimensional contexts.

These two early strands already exhibit two distinct meanings of adaptation. In ACTW, the effective horizon is adjusted by discounting historical evidence. In the Laplace framework, the local distributional parameter itself becomes a context-dependent and time-evolving statistic. This suggests that “adaptive” may refer either to temporal forgetting or to parametric sharing across contexts, depending on the modeling level.

3. Retrieval-augmented generation: document selection, embedding prefixes, and hybrid representations

In RAG, ACC usually refers to reducing retrieved context before generation while avoiding the rigidity of fixed compression rates. AdaComp defines the compression rate as the minimum number of top-ranked retrieved documents required for the RAG system to produce the correct answer. For a query DD3 and ranked documents DD4, the top-DD5 subset is DD6, and the annotated label is the smallest DD7 such that DD8; if no subset works, DD9 (Zhang et al., 2024). A Llama2-7B predictor is then trained as a multi-class classifier over compression rates. On Natural Questions, TriviaQA, HotpotQA, and Conversational Multi-doc QA, AdaComp significantly reduces inference costs while maintaining performance nearly identical to uncompressed models; it reports 40.13 EM / 70.96 F1 on NQ, 47.15 EM / 79.40 F1 on TriviaQA, and 26.36 EM / 60.46 F1 on HotpotQA (Zhang et al., 2024).

ACC-RAG uses a different mechanism. Each retrieved document is compressed offline into an embedding sequence,

nn0

and the compressed document embeddings are concatenated into nn1 (Guo et al., 24 Jul 2025). At inference, an adaptive selector progressively checks prefixes nn2 and stops when the current prefix is sufficient. The selector is trained on synthesized tuples and optimized with a REINFORCE objective. The paper reports Vanilla RAG average: M = 38.17, FTIT = 3371 versus ACC-RAG average: M = 35.23, FTIT = 697, describing this as roughly nn3 faster first-token inference while preserving most of the retrieval benefit (Guo et al., 24 Jul 2025).

AttnComp makes the stopping rule attention-guided. It runs the first nn4 transformer layers of the reader model, applies an extra cross-attention layer, and aggregates query-to-context attention into instruction and document scores. The top-nn5 rule keeps adding documents until the cumulative score exceeds threshold nn6, or the next score falls below nn7 (Luo et al., 22 Sep 2025). The paper uses nn8 and nn9 by default, trains only the cross-attention layer while freezing the first Pnw(y1:t)={Pkt(y1:t ⁣n)if n is a leaf node 12Pkt(y1:t ⁣n)+12Pnw(y1:t)Pnrw(y1:t)otherwise,P^w_n(y_{1:t}) = \begin{cases} P_{kt}(y_{1:t}\!\mid_n) & \text{if } n \text{ is a leaf node} \ \frac{1}{2}P_{kt}(y_{1:t}\!\mid_n) + \frac{1}{2}P^w_{n\ell}(y_{1:t})P^w_{nr}(y_{1:t}) & \text{otherwise,} \end{cases}0 layers, and defines confidence as Pnw(y1:t)={Pkt(y1:t ⁣n)if n is a leaf node 12Pkt(y1:t ⁣n)+12Pnw(y1:t)Pnrw(y1:t)otherwise,P^w_n(y_{1:t}) = \begin{cases} P_{kt}(y_{1:t}\!\mid_n) & \text{if } n \text{ is a leaf node} \ \frac{1}{2}P_{kt}(y_{1:t}\!\mid_n) + \frac{1}{2}P^w_{n\ell}(y_{1:t})P^w_{nr}(y_{1:t}) & \text{otherwise,} \end{cases}1, making the instruction attention score a proxy for retrieval quality. With Llama-3.1-8B-Instruct, 100 documents retrieved per query, and 17.0x compression, AttnComp reports 44.2 average accuracy and 38.4 average F1, compared with 42.3 average accuracy and 38.3 average F1 for the uncompressed baseline (Luo et al., 22 Sep 2025).

SARA departs from purely extractive selection by using a hybrid, two-level representation: top-ranked retrieved chunks remain as ordinary text, while lower-priority contexts become semantic compression vectors (Jin et al., 8 Jul 2025). The compressor is trained with an embedding alignment objective,

Pnw(y1:t)={Pkt(y1:t ⁣n)if n is a leaf node 12Pkt(y1:t ⁣n)+12Pnw(y1:t)Pnrw(y1:t)otherwise,P^w_n(y_{1:t}) = \begin{cases} P_{kt}(y_{1:t}\!\mid_n) & \text{if } n \text{ is a leaf node} \ \frac{1}{2}P_{kt}(y_{1:t}\!\mid_n) + \frac{1}{2}P^w_{n\ell}(y_{1:t})P^w_{nr}(y_{1:t}) & \text{otherwise,} \end{cases}2

and a context reconstruction objective,

Pnw(y1:t)={Pkt(y1:t ⁣n)if n is a leaf node 12Pkt(y1:t ⁣n)+12Pnw(y1:t)Pnrw(y1:t)otherwise,P^w_n(y_{1:t}) = \begin{cases} P_{kt}(y_{1:t}\!\mid_n) & \text{if } n \text{ is a leaf node} \ \frac{1}{2}P_{kt}(y_{1:t}\!\mid_n) + \frac{1}{2}P^w_{n\ell}(y_{1:t})P^w_{nr}(y_{1:t}) & \text{otherwise,} \end{cases}3

Selection is iterative and novelty-aware, using either embedding-based novelty or conditional self-information. The appendix states that the model processes at most Pnw(y1:t)={Pkt(y1:t ⁣n)if n is a leaf node 12Pkt(y1:t ⁣n)+12Pnw(y1:t)Pnrw(y1:t)otherwise,P^w_n(y_{1:t}) = \begin{cases} P_{kt}(y_{1:t}\!\mid_n) & \text{if } n \text{ is a leaf node} \ \frac{1}{2}P_{kt}(y_{1:t}\!\mid_n) + \frac{1}{2}P^w_{n\ell}(y_{1:t})P^w_{nr}(y_{1:t}) & \text{otherwise,} \end{cases}4 chunks and further selects the top Pnw(y1:t)={Pkt(y1:t ⁣n)if n is a leaf node 12Pkt(y1:t ⁣n)+12Pnw(y1:t)Pnrw(y1:t)otherwise,P^w_n(y_{1:t}) = \begin{cases} P_{kt}(y_{1:t}\!\mid_n) & \text{if } n \text{ is a leaf node} \ \frac{1}{2}P_{kt}(y_{1:t}\!\mid_n) + \frac{1}{2}P^w_{n\ell}(y_{1:t})P^w_{nr}(y_{1:t}) & \text{otherwise,} \end{cases}5 as natural language evidence, encoding the rest as compression vectors. Across 9 datasets and 5 open-source LLMs spanning 3 model families, SARA reports gains of +17.71 answer relevance, +13.72 answer correctness, and +15.53 semantic similarity (Jin et al., 8 Jul 2025).

A closely related long-context QA formulation appears in ATACompressor, where the compressor minimizes the discrepancy between the output distribution from the original context and that from a compressed context,

Pnw(y1:t)={Pkt(y1:t ⁣n)if n is a leaf node 12Pkt(y1:t ⁣n)+12Pnw(y1:t)Pnrw(y1:t)otherwise,P^w_n(y_{1:t}) = \begin{cases} P_{kt}(y_{1:t}\!\mid_n) & \text{if } n \text{ is a leaf node} \ \frac{1}{2}P_{kt}(y_{1:t}\!\mid_n) + \frac{1}{2}P^w_{n\ell}(y_{1:t})P^w_{nr}(y_{1:t}) & \text{otherwise,} \end{cases}6

but the compressed length Pnw(y1:t)={Pkt(y1:t ⁣n)if n is a leaf node 12Pkt(y1:t ⁣n)+12Pnw(y1:t)Pnrw(y1:t)otherwise,P^w_n(y_{1:t}) = \begin{cases} P_{kt}(y_{1:t}\!\mid_n) & \text{if } n \text{ is a leaf node} \ \frac{1}{2}P_{kt}(y_{1:t}\!\mid_n) + \frac{1}{2}P^w_{n\ell}(y_{1:t})P^w_{nr}(y_{1:t}) & \text{otherwise,} \end{cases}7 is itself set by an Adaptive Allocation Controller using

Pnw(y1:t)={Pkt(y1:t ⁣n)if n is a leaf node 12Pkt(y1:t ⁣n)+12Pnw(y1:t)Pnrw(y1:t)otherwise,P^w_n(y_{1:t}) = \begin{cases} P_{kt}(y_{1:t}\!\mid_n) & \text{if } n \text{ is a leaf node} \ \frac{1}{2}P_{kt}(y_{1:t}\!\mid_n) + \frac{1}{2}P^w_{n\ell}(y_{1:t})P^w_{nr}(y_{1:t}) & \text{otherwise,} \end{cases}8

(Li et al., 3 Feb 2026). On Qwen-2-7B, the method reports 80.23 F1 / 65.49 EM / 23.81x CR / 3.63 TP on HotpotQA, 53.30 F1 / 8.15 EM / 25.32x on MSMARCO, and 70.52 F1 / 52.10 EM / 27.39x on SQuAD.

Across these RAG and long-context formulations, the compression target varies—whole documents, embedding prefixes, attention-ranked subsets, hybrid vector-text packages, or task-relevant chunks—but all reject a globally fixed context budget. The recurrent claim is that fixed compression over-compresses easy cases and under-compresses difficult ones.

4. Cache-centric and dialogue-centric ACC

Adaptive contextual compression for Cache-Augmented Generation (CAG) addresses a different scaling problem: how to fit the right information into a finite context window without paying the runtime and engineering cost of full retrieval every time (Agrawal et al., 13 May 2025). The pipeline has three stages: Snippet Ranking, Multi-Level Summarization, and Contextual Compression Policy Optimization. Ranking uses

Pnw(y1:t)={Pkt(y1:t ⁣n)if n is a leaf node 12Pkt(y1:t ⁣n)+12Pnw(y1:t)Pnrw(y1:t)otherwise,P^w_n(y_{1:t}) = \begin{cases} P_{kt}(y_{1:t}\!\mid_n) & \text{if } n \text{ is a leaf node} \ \frac{1}{2}P_{kt}(y_{1:t}\!\mid_n) + \frac{1}{2}P^w_{n\ell}(y_{1:t})P^w_{nr}(y_{1:t}) & \text{otherwise,} \end{cases}9

where 1γ1-\gamma0 and 1γ1-\gamma1 are encoded using a dual encoder such as DPR or Sentence-BERT, recent query history is incorporated through 1γ1-\gamma2, and only the top 1γ1-\gamma3 proceed (Agrawal et al., 13 May 2025). Summarization is hierarchical and BART-based; the policy stage formalizes compression as a Markov Decision Process trained with PPO. The paper claims up to 75% token reduction while retaining over 95% of task-critical content, reports 0.805 BERTScore on HotPotQA for ACC–CAG versus 0.754 for Dense RAG, and states that the hybrid ACC–CAG–RAG reaches 0.812 BERTScore with 710 ms latency (Agrawal et al., 13 May 2025).

For long-running interactions, one ACC framework combines importance-aware memory selection, coherence-sensitive filtering, and dynamic budget allocation (Fofadiya et al., 31 Mar 2026). Each dialogue turn 1γ1-\gamma4 is scored by

1γ1-\gamma5

then modulated by a coherence score

1γ1-\gamma6

High-score turns are retained, medium-score turns summarized, and low-score turns dropped under a dynamic budget 1γ1-\gamma7 (Fofadiya et al., 31 Mar 2026). The final training objective combines task, coherence, token-efficiency, and reconstruction terms. On long-running conversational benchmarks, the paper reports answer accuracy about 0.89–0.91, retrieve accuracy about 0.94–0.95, recall accuracy about 0.68–0.71, coherence about 0.95–0.96, plus 25%–55% token reduction and 10%–35% latency improvement (Fofadiya et al., 31 Mar 2026).

Context Codec formalizes a still different object of compression. Its thesis is that LLM context should be treated as a set of semantic commitments rather than tokens (Trukhina et al., 17 May 2026). It separates extraction, normalization, representation, rendering, and verification, and represents dialogue state as semantic atoms

1γ1-\gamma8

It then defines identity, equivalence, and conflict relations over canonical atoms, along with evaluation metrics: 1γ1-\gamma9 The framework also introduces Commitment Density and round-trip recoverability, a taxonomy of semantic compression errors, conservative fallback rules for low-confidence and safety-critical atoms, and Context Compression Language (CCL), an ASCII-first compact rendering of canonical JSON atoms (Trukhina et al., 17 May 2026). The paper explicitly presents this as verifiable compression rather than mere shortening.

These dialogue-centric papers shift ACC away from retrieval ranking and toward state management. The preserved object is not only evidence for a current answer, but also constraints, preferences, decisions, tool outputs, and safety boundaries that may govern future turns. A plausible implication is that ACC in persistent interaction is as much about temporal continuity and auditability as about token economy.

5. Agent trajectories, reinforcement learning, and training-time systems interpretations

One recent use of ACC is Agent Context Compilation, which converts multi-turn agent trajectories into long-context supervised examples so that models learn to integrate scattered evidence directly rather than only imitate tool-use decisions (Su et al., 21 May 2026). Given a trajectory

c=0.1,a=0.33c=0.1, a=0.330

standard agent SFT masks tool responses and supervises only reasoning and actions. ACC instead constructs compiled inputs c=0.1,a=0.33c=0.1, a=0.331 and trains with

c=0.1,a=0.33c=0.1, a=0.332

The compiled context c=0.1,a=0.33c=0.1, a=0.333 concatenates structured evidence pieces under a token budget, often with distractors and randomized order (Su et al., 21 May 2026). Using 10,802 trajectories total, Qwen3-30B-A3B-Thinking, sequence length 131,072, and four epochs, the paper reports MRCR overall 68.28 (+18.09) and GraphWalks overall 77.51 (+7.59), with general capabilities on GPQA-Diamond, MMLU-Pro, AIME, and IFEval preserved or slightly improved (Su et al., 21 May 2026).

ZipRL treats adaptive context compression as part of RL for multi-turn agent tasks (Hu et al., 27 May 2026). Its multi-granularity compression mechanism defines five levels, from 100–500 chars, ultra-coarse to 3000–6000 chars, ultra-fine, selected via coarse-to-fine prompting and guided by relevance (Hu et al., 27 May 2026). Compression quality is approximated by

c=0.1,a=0.33c=0.1, a=0.334

with weights c=0.1,a=0.33c=0.1, a=0.335. Hindsight Response Replay then reshapes the GRPO advantage: c=0.1,a=0.33c=0.1, a=0.336 On five agent benchmarks, the paper reports that ZipRL outperforms state-of-the-art approaches by 27.9% and 34.7% across Qwen3-4B and Qwen3-8B models, while also showing robustness under 256-turn extrapolation tests (Hu et al., 27 May 2026).

A systems-level reinterpretation appears in activation memory management. The paper "Adacc: Adaptive Compression and Activation Checkpointing for LLM Memory Management" describes a framework named ACTflow that combines layer-specific compression algorithms, an MILP-based scheduling policy, and adaptive policy evolution (Chen et al., 1 Aug 2025). Here the “context” is not semantic prompt content, but intermediate training tensors. The objective is to decide, tensor by tensor, whether to recompute, compress, or retain activations. Reported gains are 1.01x to 1.37x training acceleration compared to state-of-the-art frameworks, with comparable accuracy to the baseline (Chen et al., 1 Aug 2025). This is conceptually close to adaptive compression but lies outside retrieval or dialogue compression in the usual sense.

The diversity of these formulations is important. Some ACC methods act at inference by choosing how much evidence to reveal; some act at training time by reshaping supervision; some manage semantic commitments; others manage GPU memory. The shared element is adaptive allocation under a constrained budget, but the budgets themselves differ: tokens, compressed embeddings, document counts, semantic fidelity, turns, or activations.

6. Recurring principles, metrics, and points of differentiation

Several design principles recur across the literature. One is query- or state-dependent budgeting. AdaComp predicts a query-specific top-c=0.1,a=0.33c=0.1, a=0.337 (Zhang et al., 2024); ACC-RAG progressively reveals embedding prefixes until the selector returns “sufficient” (Guo et al., 24 Jul 2025); AttnComp uses cumulative attention mass with c=0.1,a=0.33c=0.1, a=0.338 and c=0.1,a=0.33c=0.1, a=0.339 (Luo et al., 22 Sep 2025); ATACompressor sets r=xμ(c)r = x - \mu(c)0 from estimated relevant length (Li et al., 3 Feb 2026); long-running interaction ACC uses a dynamic budget tied to dialogue entropy (Fofadiya et al., 31 Mar 2026); ZipRL chooses compression granularity based on relevance and task progress (Hu et al., 27 May 2026).

A second principle is non-uniform treatment of contextual units. ACTW discounts old symbols more than recent ones (O'Neill et al., 2012). The Laplace framework shares a compact parametric function across contexts instead of storing isolated statistics per bin (Duda, 2019). SARA keeps some evidence as plain text and encodes the rest as compression vectors (Jin et al., 8 Jul 2025). Context Codec preserves safety-critical or low-confidence atoms conservatively and allows more aggressive compression for low-risk items (Trukhina et al., 17 May 2026). This suggests that ACC usually rejects uniform compression in favor of stratified retention.

A third principle is explicit trade-off measurement. Compression is evaluated not only by size reduction, but by downstream fidelity or utility. RAG papers report EM, F1, Match, latency, FTIT, BERTScore, or compression ratio (Zhang et al., 2024, Guo et al., 24 Jul 2025, Luo et al., 22 Sep 2025, Agrawal et al., 13 May 2025). Dialogue and commitment frameworks add coherence, consistency, recall-style atom metrics, and round-trip recoverability (Fofadiya et al., 31 Mar 2026, Trukhina et al., 17 May 2026). The classical compression papers use code length and benchmark corpora (O'Neill et al., 2012, Duda, 2019). This variety means that “better compression” is not directly comparable across subfields.

A recurring misconception is that ACC always means summarization. The corpus contradicts that view. Some methods are extractive and keep original documents or passages (Zhang et al., 2024, Luo et al., 22 Sep 2025). Some are embedding-based or soft-prompt based (Guo et al., 24 Jul 2025, Li et al., 3 Feb 2026). Some are probabilistic sequence models (O'Neill et al., 2012). Some are formal semantic-state encoders (Trukhina et al., 17 May 2026). Some are cache managers or activation-memory schedulers (Agrawal et al., 13 May 2025, Chen et al., 1 Aug 2025). Another misconception is that adaptation necessarily implies a learned neural controller. ACTW adapts through discounted KT counts, and Context Codec adapts partly through rule-based conservative fallback (O'Neill et al., 2012, Trukhina et al., 17 May 2026).

The main controversy is therefore not whether adaptation is useful, but what must be preserved when context is compressed. In compression benchmarks, the target is shorter code length under distribution shift (O'Neill et al., 2012). In multimedia prediction, it is accurate residue modeling with compact parameterization (Duda, 2019). In RAG, it is answer quality under lower latency and fewer tokens (Zhang et al., 2024, Luo et al., 22 Sep 2025). In long-running dialogue, it is coherence and memory fidelity (Fofadiya et al., 31 Mar 2026). In Context Codec, it is preservation of commitments relevant to future correctness (Trukhina et al., 17 May 2026). The absence of a single preserved object is why ACC remains a broad umbrella rather than a standardized technical primitive.

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Adaptive Context Compression (ACC).