Skip to content

Compress your input to ChatGPT or other LLMs, to let them process 2x more content and save 40% memory and GPU time.

Notifications You must be signed in to change notification settings

liyucheng09/Selective_Context

Repository files navigation

Logo of Selective Context

Selective Context for LLMs

Selective Context compresses your prompt and context to allows LLMs (such as ChatGPT) to process 2x more content. It is especially useful in dealing with long documents and maintaining long conversations without compromising their performance on various tasks!

This repository contains the code and data for the paper: Unlocking Context Constraints of LLMs: Enhancing Context Efficiency of LLMs with Self-Information-Based Content Filtering.

Updates!!

Try our demo on Huggingface Space.

Key Features

  • Efficient Context Management: Selective Context maximizes the utility of fixed context length in LLMs, allowing them to process long documents and extended conversations more efficiently.
  • Informativeness Evaluation: Our method employs a base language model to compute self-information for lexical units (sentences, phrases, or tokens) in a context and use it to evaluate their informativeness.
  • Extensive Evaluation: We provide extensive evaluations of Selective Context on three data sources (arxiv papers, BBC news articles, and conversation transcripts) and four different NLP tasks (summarization, question answering, original context reconstruction, and conversation).

Getting Started

To get started, follow these steps:

  1. Install selective-context via Pypi:

    pip install selective-context
    
  2. Import SelectiveContext:

    from selective_context import SelectiveContext
    
  3. Compress your prompt and context:

    sc = SelectiveContext(model_type='gpt2', lang='en')
    context, reduced_content = sc(text)
    
  4. You can also adjust the reduce ratio:

    context, reduced_content = sc(text, reduce_ratio = 0.5)
    
  5. If you prefer to try with web interface, try our streamlit app:

    streamlit run app/app.py
    

    Or directly visit our Space on Hugging Face Hub.

Code Structure

  • selective_context.py: A demo for performing context reduction using Selective Context.
  • context_manager.py: The main module for managing context and implementing the Selective Context algorithm.
  • main.py: The main script for running experiments and evaluating the effectiveness of Selective Context.
  • qa_manager.py: A helper module for managing question answering tasks during the experiments.

Experiments

To reproduce the experiments from the paper, run the following command:

python main.py

This will run the experiments on arxiv papers, BBC news articles, and conversation transcripts with four different NLP tasks: summarization, question answering, original context reconstruction, and conversation.

Dataset in the paper

The dataset used in the paper can be found at:

The datasets are created by ourselves so if you need citation just use the citation of this tool.

Citation

If you find this repository helpful or use our method in your research, please consider citing our paper:

@misc{li2023unlocking,
      title={Unlocking Context Constraints of LLMs: Enhancing Context Efficiency of LLMs with Self-Information-Based Content Filtering}, 
      author={Yucheng Li},
      year={2023},
      eprint={2304.12102},
      archivePrefix={arXiv},
      primaryClass={cs.CL}
}

License

This project is licensed under the MIT License.

About

Compress your input to ChatGPT or other LLMs, to let them process 2x more content and save 40% memory and GPU time.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published