broalantaps/Awesome-Context-Compression-LLMs

πŸš€ A curated list of awesome resources focusing on Context Compression techniques for Large Language Models(LLMs).

HTML

77

22 commits

updated Jan 17, 2026

See the code

README

Awesome-Context-Compression-LLMs πŸ—œοΈ

Awesome License: MIT PRs Welcome

A curated collection of research papers focused on enhancing the efficiency of Large Language Models (LLMs) through context compression techniques. These methods aim to reduce token usage, compress latent states, and optimize memory footprints (KV Cache).

πŸ“‘ Table of Contents

🎯 Introduction

As LLMs scale to handle longer contexts and more complex tasks, efficient context management becomes crucial. This repository organizes papers into three distinct categories based on where and how compression occurs:

  1. Explicit Compression: Operates on input tokens before/during encoding
  2. Implicit Compression: Compresses into latent representations
  3. KV Compression: Optimizes the Key-Value cache during inference

πŸ—‚οΈ Taxonomy

Context Compression Methods
β”œβ”€β”€ Explicit Context Compression (Input Level)
β”‚   β”œβ”€β”€ Token Pruning (LLMLingua, Selective-Context)
β”‚   β”œβ”€β”€ Summarization-based
β”‚   └── Information-theoretic Selection
β”‚
β”œβ”€β”€ Implicit Context Compression (Latent Level)
β”‚   β”œβ”€β”€ Soft Prompt (AutoCompressor)
β”‚   β”œβ”€β”€ Autoencoder-based (ICAE, CoCom)
β”‚   └── Latent Reasoning (Coconut)
β”‚
└── Inference-Time KV Compression (Cache Level)
    β”œβ”€β”€ Eviction Policies (H2O, TOVA, SnapKV)
    β”œβ”€β”€ Quantization (KIVI)
    └── Sparse Attention (StreamingLLM)

πŸ“ Explicit Context Compression (Prompt/Input Level)

Definition: Methods that operate primarily on the input text or input tokens. They select, prune, or summarize the context before or during the initial encoding to shorten the input sequence length. The goal is often to fit more context into the window or reduce API costs.

Keywords: Prompt Compression, Token Pruning, Summarization, Information Entropy, Token Selection, Coarse-grained Pruning

Paper TitleVenue/DateTagsCodeTL;DR
TokenSkip: Controllable Chain-of-Thought Compression in LLMsEMNLP 2025 MainToken Pruning, DistillationGitHubA simple yet effective approach that enables LLMs to selectively skip less important tokens, allowing for controllable CoT compression.
LLMLingua-2: Data Distillation for Efficient and Faithful Task-Agnostic Prompt CompressionACL 2024Pruning, DistillationGitHubLearns compression from GPT-4 annotations, 3x-6x faster than LLMLingua
LongLLMLingua: Accelerating and Enhancing LLMs in Long Context Scenarios via Prompt CompressionACL 2024Pruning, RAGGitHubQuestion-aware compression for RAG scenarios, reorders retrieved documents by relevance
Keyformer: KV Cache Reduction through Key Tokens Selection for Efficient Generative InferenceMLSys 2024PruningGitHubIdentifies key tokens at each layer for selective retention
RECOMP: Improving Retrieval-Augmented LMs with Compression and Selective AugmentationICLR 2024Summarization, RAGGitHubTrains extractive/abstractive compressors for retrieved documents
Nugget: Neural Compression for Efficient Prompt DecodingICLR 2024Pruning-Learns to identify and preserve "nugget" tokens for compression
Walking Down the Memory Maze: Beyond Context Limit through Interactive ReadingNAACL 2024Summarization-MemWalker: iteratively summarizes and navigates long documents
LLMLingua: Compressing Prompts for Accelerated Inference of Large Language ModelsEMNLP 2023PruningGitHubUses a small LM to calculate perplexity and prune less informative tokens, achieving up to 20x compression
Selective-Context: Compressing Contexts for Efficient InferenceEMNLP 2023Pruning, Self-InformationGitHubFilters out low self-information content using a small LM

🧠 Implicit Context Compression (Latent/Reasoning Level)

Definition: Methods that compress context into soft vectors, embeddings, or latent states. This includes encoding long text into compact vector representations and Latent Reasoning where the "Chain of Thought" or intermediate reasoning steps are performed in the latent space (not outputting tokens) to reduce generation overhead.

Keywords: Soft Prompt, Autoencoder, Memory Vectors, Latent Space Reasoning, Continuous Chain of Thought, Internal State Compression

Paper TitleVenue/DateTagsCodeTL;DR
CLaRa: Bridging Retrieval and Generation with Continuous Latent Reasoning-Memory Slots, RAGGithubCLaRa achieves significant compression rates (32x-64x) while preserving essential information for accurate answer generation.
REFRAG: Rethinking RAG based Decoding-Autoencoder, Memory Slots, RAGGithubReduces TTFT delay of RAG system by 30 times.
Enhancing RAG Efficiency with Adaptive Context CompressionEMNLP 2025Autoencoder, RAG-A framework utilizing offline hierarchical compression and dynamic inference-time selection. It achieves >4x faster inference efficiency compared to standard RAG while maintaining competitive performance.
PCC: Pretraining Context Compressor for Large Language Models with Embedding-Based MemoryACL 2025 MainAutoencoder, Memory SlotsGithubExplore the upper limit of implicit compression ratio and connect to downstream LLMs faster.
500xCompressor: Generalized Prompt Compression for Large Language ModelsACL 2025 MainAutoencoder, Memory SlotsGithubCompresss a maximum of 500 natural language tokens into only 1 special token.
Coconut: Chain of Continuous ThoughtarXiv 2024.12Latent Reasoning, CoTGithubPerforms reasoning in continuous latent space without outputting tokens
xRAG: Extreme Context Compression for Retrieval-augmented Generation with One TokenNeurIPS 2024RAG, CompressionGithubCompresses retrieved documents into dense representations
PEARL: Prompting Large Language Models to Plan and Execute Actions Over Long DocumentsACL 2024Planning, Long DocGitHubDecomposes long document QA into planning and execution
ICAE: In-context Autoencoder for Context Compression in a Large Language ModelICLR 2024Autoencoder, Memory SlotsGitHubICAE compresses 512 tokens into 128 memory slots for 4x compression
AutoCompressor: Adapting Language Models to Compress ContextsEMNLP 2023Soft PromptGitHubAutoCompressor: recursively compresses segments into summary vectors
Scaling Latent Reasoning via Thinking TokensarXiv 2023.11Latent Reasoning, Pause Token-Uses "thinking tokens" for implicit reasoning steps
Focused Transformer: Contrastive Training for Context ScalingNeurIPS 2023Contrastive, Long-ContextGitHubLongLLaMA: uses contrastive learning to focus on relevant context
Learning to Compress Prompts with Gist TokensNeurIPS 2023Soft PromptGitHubCompresses instructions into learnable gist tokens
Parallel Context Windows for Large Language ModelsACL 2023Parallel, Memory-PCW: processes context in parallel windows and aggregates
Training Language Models with Memory AugmentationEMNLP 2022Memory, TRIMEGitHubTRIME: retrieves and integrates memory tokens during training
Compressive Transformers for Long-Range Sequence ModellingICLR 2020Compression, Memory-Uses compressed memory to extend context beyond window limits

⚑ Inference-Time KV Compression (Memory/Cache Level)

Definition: Methods that specifically target the Key-Value (KV) Cache during the generation phase. They aim to reduce GPU memory usage and latency by evicting "unimportant" KV pairs, quantizing the cache, or using sparse attention patterns. These methods usually happen on-the-fly during inference.

Keywords: KV Cache Eviction, Heavy Hitters, Sparse Attention, Cache Quantization, Budget-constrained Generation, Infinite Context, Streaming Inference

Paper TitleVenue/DateTagsCodeTL;DR
ParallelComp: Parallel Long-Context Compressor for Length ExtrapolationICML 2025SparseGitHubThis method divides long texts into smaller chunks and processes them in parallel while automatically removing redundant or irrelevant parts, greatly improving efficiency and performance.
UNComp: Can Matrix Entropy Uncover Sparsity? β€” A Compressor Design from an Uncertainty-Aware PerspectiveEMNLP 2025Sparse, KV Cache EvictionGitHubAn uncertainty-aware framework that leverages truncated matrix entropy to identify areas of low information content, thereby revealing sparsity patterns that can be used for adaptive compression.
Quest: Query-Aware Sparsity for Efficient Long-Context LLM InferenceICML 2024Sparse, Query-AwareGitHubPage-based KV management with query-aware selection
PyramidKV: Dynamic KV Cache Compression based on Pyramidal Information FunnelingarXiv 2024.06Eviction, Layer-wiseGitHubDifferent layers retain different amounts of KV pairs (pyramid structure)
MiniCache: KV Cache Compression in Depth Dimension for Large Language ModelsarXiv 2024.05Eviction, Layer Merge-Merges KV caches across similar layers to reduce memory
SnapKV: LLM Knows What You are Looking for Before GenerationarXiv 2024.04Eviction, Observation WindowGitHubUses observation window at prompt end to identify important KV pairs
CaM: Cache Merging for Memory-efficient LLMs InferenceICLR 2024Merging-Merges similar KV pairs instead of hard eviction
Dynamic Memory Compression: Retrofitting LLMs for Accelerated InferenceICML 2024Compression, Learned-DMC: learns to decide what to keep/discard dynamically
Gear: An Efficient KV Cache Compression Recipe for Near-Lossless Generative InferencearXiv 2024.03Quantization, ResidualGitHubQuantize majority + low-rank for outliers + sparse residual
KIVI: A Tuning-Free Asymmetric 2bit Quantization for KV CacheICML 2024Quantization, 2-bitGitHubAsymmetric quantization: 2-bit for Keys, 2-bit for Values with different schemes
Anchor-based Large Language ModelsACL 2024Anchor, CompressionGitHubGroups and anchors tokens for parallel compression
InfLLM: Unveiling the Intrinsic Capacity of LLMs for Understanding Extremely Long SequencesarXiv 2024.02Block, MemoryGitHubUses block-level memory units for extreme-length processing
KVQuant: Towards 10 Million Context Length LLM Inference with KV Cache QuantizationarXiv 2024.01Quantization, Per-ChannelGitHubPer-channel quantization with outlier handling for extreme compression
LoMA: Lossless Compressed Memory AttentionarXiv 2024.01Compression, Lossless-Achieves lossless compression via efficient memory management
TOVA: Token-wise Attention for Optimal KV-Cache ReductionarXiv 2024.01Eviction, Token-wiseGitHubEvicts tokens based on attention received in each generation step
Efficient Streaming Language Models with Attention SinksICLR 2024Streaming, Attention SinkGitHubStreamingLLM: keeps initial "sink" tokens + recent window for infinite streaming
H2O: Heavy-Hitter Oracle for Efficient Generative Inference of Large Language ModelsNeurIPS 2023Eviction, Heavy HitterGitHubKeeps only "heavy-hitter" tokens (high cumulative attention) plus recent tokens
Scissorhands: Exploiting the Persistence of Importance Hypothesis for LLM KV Cache CompressionNeurIPS 2023Eviction, Persistence-Important tokens remain important; prunes based on historical importance
FastGen: Adaptive KV Cache Compression for Efficient LLM InferencearXiv 2023.10Eviction, Adaptive-Adaptive compression policies based on attention patterns

πŸ“š Surveys

Paper TitleVenue/DateFocus
Prompt Compression for Large Language Models: A SurveyNAACL 2025Comprehensive survey on prompt compression
A Survey on Efficient Inference for Large Language ModelsarXiv 2024Covers KV cache and other inference optimizations
A Survey on Model Compression for Large Language ModelsTACL 2024General LLM compression (quantization, pruning, distillation)
Beyond the Limits: A Survey of Techniques to Extend the Context Length in Large Language ModelsarXiv 2024Focuses on extending context length
Length Extrapolation of Transformers: A Survey from the Perspective of Positional EncodingarXiv 2023Survey on positional encoding for long contexts

🀝 Contributing

We welcome contributions! Please follow these steps:

  1. Fork the repository
  2. Add your paper following the table format
  3. Ensure the paper is correctly categorized
  4. Submit a Pull Request

Categorization Guidelines

  • Cat 1 (Explicit): If the paper discusses compressing prompts before sending to the model/API
  • Cat 2 (Implicit): If the paper compresses into latent vectors or performs latent reasoning
  • Cat 3 (KV Cache): If the paper manages GPU memory by manipulating KV pairs during inference

⭐ Star History

Star History Chart


πŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.


πŸ™ Acknowledgements

Special thanks to all researchers whose work is featured in this repository. Your contributions to making LLMs more efficient benefit the entire community.


If you find this repository helpful, please consider giving it a ⭐!

Contributors

broalantaps

20 commits

menik1126

1 commits

Superbooming

1 commits

broalantaps/Awesome-Context-Compression-LLMs

πŸš€ A curated list of awesome resources focusing on Context Compression techniques for Large Language Models(LLMs).

HTML

77

22 commits

updated Jan 17, 2026

See the code

README

Awesome-Context-Compression-LLMs πŸ—œοΈ

Awesome License: MIT PRs Welcome

A curated collection of research papers focused on enhancing the efficiency of Large Language Models (LLMs) through context compression techniques. These methods aim to reduce token usage, compress latent states, and optimize memory footprints (KV Cache).

πŸ“‘ Table of Contents

🎯 Introduction

As LLMs scale to handle longer contexts and more complex tasks, efficient context management becomes crucial. This repository organizes papers into three distinct categories based on where and how compression occurs:

  1. Explicit Compression: Operates on input tokens before/during encoding
  2. Implicit Compression: Compresses into latent representations
  3. KV Compression: Optimizes the Key-Value cache during inference

πŸ—‚οΈ Taxonomy

Context Compression Methods
β”œβ”€β”€ Explicit Context Compression (Input Level)
β”‚   β”œβ”€β”€ Token Pruning (LLMLingua, Selective-Context)
β”‚   β”œβ”€β”€ Summarization-based
β”‚   └── Information-theoretic Selection
β”‚
β”œβ”€β”€ Implicit Context Compression (Latent Level)
β”‚   β”œβ”€β”€ Soft Prompt (AutoCompressor)
β”‚   β”œβ”€β”€ Autoencoder-based (ICAE, CoCom)
β”‚   └── Latent Reasoning (Coconut)
β”‚
└── Inference-Time KV Compression (Cache Level)
    β”œβ”€β”€ Eviction Policies (H2O, TOVA, SnapKV)
    β”œβ”€β”€ Quantization (KIVI)
    └── Sparse Attention (StreamingLLM)

πŸ“ Explicit Context Compression (Prompt/Input Level)

Definition: Methods that operate primarily on the input text or input tokens. They select, prune, or summarize the context before or during the initial encoding to shorten the input sequence length. The goal is often to fit more context into the window or reduce API costs.

Keywords: Prompt Compression, Token Pruning, Summarization, Information Entropy, Token Selection, Coarse-grained Pruning

Paper TitleVenue/DateTagsCodeTL;DR
TokenSkip: Controllable Chain-of-Thought Compression in LLMsEMNLP 2025 MainToken Pruning, DistillationGitHubA simple yet effective approach that enables LLMs to selectively skip less important tokens, allowing for controllable CoT compression.
LLMLingua-2: Data Distillation for Efficient and Faithful Task-Agnostic Prompt CompressionACL 2024Pruning, DistillationGitHubLearns compression from GPT-4 annotations, 3x-6x faster than LLMLingua
LongLLMLingua: Accelerating and Enhancing LLMs in Long Context Scenarios via Prompt CompressionACL 2024Pruning, RAGGitHubQuestion-aware compression for RAG scenarios, reorders retrieved documents by relevance
Keyformer: KV Cache Reduction through Key Tokens Selection for Efficient Generative InferenceMLSys 2024PruningGitHubIdentifies key tokens at each layer for selective retention
RECOMP: Improving Retrieval-Augmented LMs with Compression and Selective AugmentationICLR 2024Summarization, RAGGitHubTrains extractive/abstractive compressors for retrieved documents
Nugget: Neural Compression for Efficient Prompt DecodingICLR 2024Pruning-Learns to identify and preserve "nugget" tokens for compression
Walking Down the Memory Maze: Beyond Context Limit through Interactive ReadingNAACL 2024Summarization-MemWalker: iteratively summarizes and navigates long documents
LLMLingua: Compressing Prompts for Accelerated Inference of Large Language ModelsEMNLP 2023PruningGitHubUses a small LM to calculate perplexity and prune less informative tokens, achieving up to 20x compression
Selective-Context: Compressing Contexts for Efficient InferenceEMNLP 2023Pruning, Self-InformationGitHubFilters out low self-information content using a small LM

🧠 Implicit Context Compression (Latent/Reasoning Level)

Definition: Methods that compress context into soft vectors, embeddings, or latent states. This includes encoding long text into compact vector representations and Latent Reasoning where the "Chain of Thought" or intermediate reasoning steps are performed in the latent space (not outputting tokens) to reduce generation overhead.

Keywords: Soft Prompt, Autoencoder, Memory Vectors, Latent Space Reasoning, Continuous Chain of Thought, Internal State Compression

Paper TitleVenue/DateTagsCodeTL;DR
CLaRa: Bridging Retrieval and Generation with Continuous Latent Reasoning-Memory Slots, RAGGithubCLaRa achieves significant compression rates (32x-64x) while preserving essential information for accurate answer generation.
REFRAG: Rethinking RAG based Decoding-Autoencoder, Memory Slots, RAGGithubReduces TTFT delay of RAG system by 30 times.
Enhancing RAG Efficiency with Adaptive Context CompressionEMNLP 2025Autoencoder, RAG-A framework utilizing offline hierarchical compression and dynamic inference-time selection. It achieves >4x faster inference efficiency compared to standard RAG while maintaining competitive performance.
PCC: Pretraining Context Compressor for Large Language Models with Embedding-Based MemoryACL 2025 MainAutoencoder, Memory SlotsGithubExplore the upper limit of implicit compression ratio and connect to downstream LLMs faster.
500xCompressor: Generalized Prompt Compression for Large Language ModelsACL 2025 MainAutoencoder, Memory SlotsGithubCompresss a maximum of 500 natural language tokens into only 1 special token.
Coconut: Chain of Continuous ThoughtarXiv 2024.12Latent Reasoning, CoTGithubPerforms reasoning in continuous latent space without outputting tokens
xRAG: Extreme Context Compression for Retrieval-augmented Generation with One TokenNeurIPS 2024RAG, CompressionGithubCompresses retrieved documents into dense representations
PEARL: Prompting Large Language Models to Plan and Execute Actions Over Long DocumentsACL 2024Planning, Long DocGitHubDecomposes long document QA into planning and execution
ICAE: In-context Autoencoder for Context Compression in a Large Language ModelICLR 2024Autoencoder, Memory SlotsGitHubICAE compresses 512 tokens into 128 memory slots for 4x compression
AutoCompressor: Adapting Language Models to Compress ContextsEMNLP 2023Soft PromptGitHubAutoCompressor: recursively compresses segments into summary vectors
Scaling Latent Reasoning via Thinking TokensarXiv 2023.11Latent Reasoning, Pause Token-Uses "thinking tokens" for implicit reasoning steps
Focused Transformer: Contrastive Training for Context ScalingNeurIPS 2023Contrastive, Long-ContextGitHubLongLLaMA: uses contrastive learning to focus on relevant context
Learning to Compress Prompts with Gist TokensNeurIPS 2023Soft PromptGitHubCompresses instructions into learnable gist tokens
Parallel Context Windows for Large Language ModelsACL 2023Parallel, Memory-PCW: processes context in parallel windows and aggregates
Training Language Models with Memory AugmentationEMNLP 2022Memory, TRIMEGitHubTRIME: retrieves and integrates memory tokens during training
Compressive Transformers for Long-Range Sequence ModellingICLR 2020Compression, Memory-Uses compressed memory to extend context beyond window limits

⚑ Inference-Time KV Compression (Memory/Cache Level)

Definition: Methods that specifically target the Key-Value (KV) Cache during the generation phase. They aim to reduce GPU memory usage and latency by evicting "unimportant" KV pairs, quantizing the cache, or using sparse attention patterns. These methods usually happen on-the-fly during inference.

Keywords: KV Cache Eviction, Heavy Hitters, Sparse Attention, Cache Quantization, Budget-constrained Generation, Infinite Context, Streaming Inference

Paper TitleVenue/DateTagsCodeTL;DR
ParallelComp: Parallel Long-Context Compressor for Length ExtrapolationICML 2025SparseGitHubThis method divides long texts into smaller chunks and processes them in parallel while automatically removing redundant or irrelevant parts, greatly improving efficiency and performance.
UNComp: Can Matrix Entropy Uncover Sparsity? β€” A Compressor Design from an Uncertainty-Aware PerspectiveEMNLP 2025Sparse, KV Cache EvictionGitHubAn uncertainty-aware framework that leverages truncated matrix entropy to identify areas of low information content, thereby revealing sparsity patterns that can be used for adaptive compression.
Quest: Query-Aware Sparsity for Efficient Long-Context LLM InferenceICML 2024Sparse, Query-AwareGitHubPage-based KV management with query-aware selection
PyramidKV: Dynamic KV Cache Compression based on Pyramidal Information FunnelingarXiv 2024.06Eviction, Layer-wiseGitHubDifferent layers retain different amounts of KV pairs (pyramid structure)
MiniCache: KV Cache Compression in Depth Dimension for Large Language ModelsarXiv 2024.05Eviction, Layer Merge-Merges KV caches across similar layers to reduce memory
SnapKV: LLM Knows What You are Looking for Before GenerationarXiv 2024.04Eviction, Observation WindowGitHubUses observation window at prompt end to identify important KV pairs
CaM: Cache Merging for Memory-efficient LLMs InferenceICLR 2024Merging-Merges similar KV pairs instead of hard eviction
Dynamic Memory Compression: Retrofitting LLMs for Accelerated InferenceICML 2024Compression, Learned-DMC: learns to decide what to keep/discard dynamically
Gear: An Efficient KV Cache Compression Recipe for Near-Lossless Generative InferencearXiv 2024.03Quantization, ResidualGitHubQuantize majority + low-rank for outliers + sparse residual
KIVI: A Tuning-Free Asymmetric 2bit Quantization for KV CacheICML 2024Quantization, 2-bitGitHubAsymmetric quantization: 2-bit for Keys, 2-bit for Values with different schemes
Anchor-based Large Language ModelsACL 2024Anchor, CompressionGitHubGroups and anchors tokens for parallel compression
InfLLM: Unveiling the Intrinsic Capacity of LLMs for Understanding Extremely Long SequencesarXiv 2024.02Block, MemoryGitHubUses block-level memory units for extreme-length processing
KVQuant: Towards 10 Million Context Length LLM Inference with KV Cache QuantizationarXiv 2024.01Quantization, Per-ChannelGitHubPer-channel quantization with outlier handling for extreme compression
LoMA: Lossless Compressed Memory AttentionarXiv 2024.01Compression, Lossless-Achieves lossless compression via efficient memory management
TOVA: Token-wise Attention for Optimal KV-Cache ReductionarXiv 2024.01Eviction, Token-wiseGitHubEvicts tokens based on attention received in each generation step
Efficient Streaming Language Models with Attention SinksICLR 2024Streaming, Attention SinkGitHubStreamingLLM: keeps initial "sink" tokens + recent window for infinite streaming
H2O: Heavy-Hitter Oracle for Efficient Generative Inference of Large Language ModelsNeurIPS 2023Eviction, Heavy HitterGitHubKeeps only "heavy-hitter" tokens (high cumulative attention) plus recent tokens
Scissorhands: Exploiting the Persistence of Importance Hypothesis for LLM KV Cache CompressionNeurIPS 2023Eviction, Persistence-Important tokens remain important; prunes based on historical importance
FastGen: Adaptive KV Cache Compression for Efficient LLM InferencearXiv 2023.10Eviction, Adaptive-Adaptive compression policies based on attention patterns

πŸ“š Surveys

Paper TitleVenue/DateFocus
Prompt Compression for Large Language Models: A SurveyNAACL 2025Comprehensive survey on prompt compression
A Survey on Efficient Inference for Large Language ModelsarXiv 2024Covers KV cache and other inference optimizations
A Survey on Model Compression for Large Language ModelsTACL 2024General LLM compression (quantization, pruning, distillation)
Beyond the Limits: A Survey of Techniques to Extend the Context Length in Large Language ModelsarXiv 2024Focuses on extending context length
Length Extrapolation of Transformers: A Survey from the Perspective of Positional EncodingarXiv 2023Survey on positional encoding for long contexts

🀝 Contributing

We welcome contributions! Please follow these steps:

  1. Fork the repository
  2. Add your paper following the table format
  3. Ensure the paper is correctly categorized
  4. Submit a Pull Request

Categorization Guidelines

  • Cat 1 (Explicit): If the paper discusses compressing prompts before sending to the model/API
  • Cat 2 (Implicit): If the paper compresses into latent vectors or performs latent reasoning
  • Cat 3 (KV Cache): If the paper manages GPU memory by manipulating KV pairs during inference

⭐ Star History

Star History Chart


πŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.


πŸ™ Acknowledgements

Special thanks to all researchers whose work is featured in this repository. Your contributions to making LLMs more efficient benefit the entire community.


If you find this repository helpful, please consider giving it a ⭐!

Contributors

broalantaps

20 commits

menik1126

1 commits

Superbooming

1 commits

Languages

HTML

100.0%