Papers
Topics
Authors
Recent
Search
2000 character limit reached

Hierarchical Semantic Compression

Updated 27 May 2026
  • Hierarchical Semantic Compression is a principled approach that compresses data by aligning multi-stage processes with semantically meaningful structures across various modalities.
  • It employs operations such as semantic chunking, greedy seed-based clustering, and proportional attention to preserve essential information while reducing memory, compute, and bandwidth.
  • HSC has achieved significant compression rates (often over 80%) in text, vision, graph, and video applications with minimal impact on task accuracy.

Hierarchical Semantic Compression (HSC) is a principled family of techniques that compress information by recursively aligning compression steps to semantically-meaningful structures within the data. Rather than operating at arbitrary token or pixel granularities, HSC systems exploit natural hierarchies—linguistic (sentences, clauses), topological (graph neighborhoods), visual (coarse to fine features), or learned semantic abstractions—to preserve essential, interpretable information at multiple scales while achieving aggressive reductions in memory, compute, and bandwidth. This approach addresses the limitations of conventional block- or token-level compressors, notably by preventing semantic fragmentation and enabling fidelity-adaptive inference, and is now foundational in text, vision, multimodal, and graph-centric compression systems.

1. Methodological Foundations and Formalization

Hierarchical Semantic Compression is universally characterized by a coarse-to-fine, multi-stage compression pipeline in which each stage targets a progressively higher-level semantic abstraction. In the context of transformer KV-cache compression, as formalized in SemantiCache, an input cache

(K,V)=[(k1,v1),,(kn,vn)],ki,viRd(K,V)=[(k_1,v_1),\ldots,(k_n,v_n)],\qquad k_i,v_i\in\mathbb{R}^d

is processed via three distinct hierarchical operations:

  1. Semantic Chunking partitions the sequence by natural linguistic boundaries (e.g., punctuation, whitespace), ensuring that chunks align with discourse units and delimiters remain as intact anchors.
  2. Greedy Seed-Based Clustering (GSC) groups spatially or temporally contiguous tokens whose representations exhibit high intrinsic similarity, producing within-chunk “clusters” that preserve local semantic coherence.
  3. Clustered Merging with Proportional Attention reduces each cluster to a semantic core via mean-pooling, and reweights attention contributions so as to faithfully recover the aggregate influence of the uncompressed cluster.

Formally, if StS_t is a cluster in chunk CmC_m, the representative core is computed as

k^t=1StiStki,v^t=1StiStvi,\hat k_t = \frac{1}{|S_t|} \sum_{i\in S_t} k_i, \qquad \hat v_t = \frac{1}{|S_t|} \sum_{i\in S_t} v_i,

with Proportional Attention reweighting achieved via: Attention(Q,Kc,Vc)=softmax(QKcd+logs)Vc,\operatorname{Attention}(Q,K_c,V_c) = \operatorname{softmax}\left(\frac{QK_c^\top}{\sqrt{d}} + \log s\right)V_c, where ss encodes cluster sizes (Wu et al., 15 Mar 2026).

Similar coarse-to-fine strategies are observed in graph (Zhang et al., 2024), visual (Zhang et al., 13 Nov 2025), and image compression (Kim et al., 8 May 2026), distinguished by domain-specific hierarchical segmentations and aggregation mechanisms.

2. Hierarchical Compression Across Modalities

Text: Long-Sequence and Cache Compression

In long-sequence LLM inference, HSC drives token memory reduction while preserving retrieval and reasoning capabilities. SemantiCache demonstrates three layers (chunks, clusters, cores) that isolate discourse units, group semantically-related tokens, and merge/reweight representations, achieving up to 86.3% compression with τ=0.5, and retaining almost all accuracy at τ=0.9 (16.7% compression for avg. score 34.05) (Wu et al., 15 Mar 2026). BEAVER demonstrates that hierarchical structure-aware page selection combining semantic and lexical ranking at the page level, with optional multi-level smoothing, achieves robust retrieval and ∼26× latency reduction over baseline token-aware approaches (Hu et al., 20 Mar 2026).

Graphs: Hierarchical LLM Aggregation

HiCom organizes the LL-hop textual neighborhood of a node into a tree and compresses each subtree via level-wise LLM soft-prompt summarization, producing a fixed-size compressed semantic descriptor per node. This hierarchy mirrors GNN-style aggregation—unfolding neighbors and “summarizing up” the tree—yielding ∼3.48% average F1 lift over strong GNN and embedding baselines in dense-graph node classification, and ∼1.8× runtime reduction per epoch (Zhang et al., 2024).

Vision: Images and Multimodal 3D

Image HSC via channel-wise hierarchical latent compression (coarse, intermediate, fine levels) aligns latent channel splits with semantically-grounded class hierarchies (CLIP/K-means clusters), delivering early classification accuracy: e.g., 68% top-1 at 0.1 bpp for coarse (K=10) tasks, with monotonic improvement as more channels are revealed (Kim et al., 8 May 2026). For 3D-VLMs, HCC-3D first applies a global structure compression (multi-head cross-attention pooling to a small set of global tokens), then refines with adaptive detail mining (salience- and attention-based selection of local tokens), attaining 98% token reduction with SOTA or better accuracy on classification and captioning (Zhang et al., 13 Nov 2025).

Temporal and Semantic Coding: Video and Perceptual Restoration

In video semantic coding, hierarchically-decomposed RL agents select frame-level and content region-level quantization parameters, reducing BD-rate by 39% compared to non-semantic baselines while improving segmentation mean IoU, exploiting task-driven hierarchical policies for mode decision (Xie et al., 2022). In semantic restoration, StyleGAN-based HSC performs a two-stage compression—core semantics (StyleGAN latents) and hierarchical context features—enabling restoration with both high perceptual fidelity and preservation of semantically consistent image identity at ultra-low bitrates (Li et al., 24 Feb 2025).

3. Algorithmic Structures and Theoretical Analysis

Hierarchical Operations Table

Stage/Layer Operation Domain Compression
Chunking/Segmentation Delimiter-based splitting Text, Cache, Pages ~No size change
Clustering/Summarization Similarity/grouping/pooling All 20–80%
Semantic Core/Token Merge Mean-pool w/ reweighting All 10–50% per cluster
Detail Refinement (optional) Salience/attention mining 3D, Image 97–98% total

Each step is equipped with domain-adapted attention or pooling/scoring, and may include task-adaptive complexity (e.g., adjustable τ, dynamic tree fanouts, or adaptive selection).

The information lattice formalism (Yu et al., 2024) provides a rigorous basis for progressive HSC: abstractions correspond to lattice coarsenings, and optimal group codes (e.g., permutation subgroups) and their cosets realize best rate–distortion tradeoffs for semantic partitions. Successive refinement property ensures lossless two-stage semantic transmission, generalizing to any chain of lattice coarsenings.

4. Empirical Performance and Applications

HSC consistently delivers significant compression (>80% in many settings), large decoding speedups (e.g., up to 2.61× in KV cache (Wu et al., 15 Mar 2026); ∼1.8× in graph (Zhang et al., 2024); 26× in context compression (Hu et al., 20 Mar 2026)), and high task fidelity (retrieval F1, node classification, recognition, semantic restoration) across domains.

Notable benchmarks include:

5. Insights, Limitations, and Future Directions

The core insight of HSC is that aligning compression to intrinsic semantic hierarchies prevents the fragmentation that plagues uniform or token-centric methods, thus maximizing information preservation per bit and facilitating aggressive bandwidth/memory reduction. Lightweight, one-pass algorithms (GSC, fast clustering, pooling) and explicit reweighting (Proportional Attention, page smoothing) allow minimal online overhead.

Tradeoffs are exposed via hyperparameters controlling compression–fidelity (e.g., threshold τ, fanout schedules, salience weighting); optimal values depend on downstream task sensitivity and target bitrate. Adaptive, learnable hierarchies (e.g., soft-prompt LLM compressors, structure-aware planners, information lattice learning) hold promise for further gains.

Open challenges and next steps, as identified in the literature:

  • Adaptive, data- or task-driven selection of hierarchical split parameters (e.g., per-layer τ, dynamic fanout)
  • Integration with hardware-optimized sparse or hybrid attention kernels for scalable transformer acceleration
  • End-to-end trainable delimiters or hierarchical codebooks
  • Extension to multi-modal and multi-scale (chapter > page > sentence > token) hierarchies, especially in complex reasoning or retrieval scenarios
  • Optimization for camera-to-edge and sensor-to-cloud semantics-focused transmission (Zhang et al., 13 Nov 2025, Kim et al., 8 May 2026)

6. Mathematical and Theoretical Underpinnings

Underlying HSC frameworks is a rate–distortion theory that considers transformations in non-trivial sigma-algebra (information lattice) spaces, where compression is the process of partition coarsening and distortion metrics are based on semantic equivalence (partition meets and joins, conditional entropy loss). Entropically, group codes for permutation-invariant sources attain optimal semantic abstraction with minimal bits, with no loss in multi-stage refinement (Yu et al., 2024). Practically, channel-, token-, segment-, or graph-level aggregation is composed with attention to preserve maximally-informative structure for downstream inference.

In summary, Hierarchical Semantic Compression provides a domain-agnostic methodology for semantic-preserving, progressive, and interpretable compression, leveraging both explicit and learned hierarchies to bridge the gap between aggressive data reduction and high-level task fidelity across modern machine learning systems.

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 Hierarchical Semantic Compression (HSC).