Skip to content

Code for "Prediction-Powered Ranking of Large Language Models", NeurIPS 2024.

License

Notifications You must be signed in to change notification settings

Networks-Learning/prediction-powered-ranking

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Prediction-Powered Ranking

This repository contains the code for the paper Prediction-Powered Ranking of Large Language Models published in NeurIPS (2024) by Ivi Chatzi, Eleni Straitouri, Suhas Thejaswi and Manuel Gomez-Rodriguez.

Contents:

Dependencies

All the code is written in Python 3.11.2
In order to create a virtual environment and install the project dependencies you can run the following commands:

python3 -m venv env
source env/bin/activate
pip install -r requirements.txt

In addition to the above dependencies, to run the notebooks and produce the figures it is necessary to install the additional requirements from notebooks/requirements.txt.

Usage

To reproduce the main experiments of the paper (Section 5 and Appendix D), run:

./scripts/llm-ranking.sh

To reproduce the synthetic experiments in Appendix E of the paper, run:

./scripts/synthetic.sh

To create the figures, run the notebooks in notebooks.

Repository structure

├── data
│   ├── human.json
│   ├── gpt-4-0125-preview.json
│   ├── claude-3-opus-20240229.json
│   └── gpt-3.5-turbo.json
├── figures
├── notebooks
├── outputs
├── scripts
│   ├── llm-ranking.sh
│   ├── synthetic.sh
│   └── config.json
└── src
    ├── data_process.py
    ├── estimate.py
    ├── llm-ranking.py
    ├── plot_utils.py
    ├── ranksets.py
    ├── run_experiments.py
    └── synthetic.py

The folder data contains the datasets used for our experimentation:

The folder figures contains all the figures presented in the paper.

The folder notebooks contains python notebooks that generate all the figures included in the paper.

The folder outputs contains the output files produced by the experiments' scripts.

The folder scripts contains bash scripts used to run all the experiments presented in the paper:

The folder src contains all the code necessary to reproduce the results in the paper. Specifically:

  • data_process.py: inputs and subsamples from datasets.
  • estimate.py: implements Algorithms 1,3,4 from the paper to compute $\hat{\theta}$ and $\widehat{\Sigma}$.
  • llm-ranking.py: reads config file and runs the experiments in Section 5 and Appendix D of the paper.
  • plot_utils.py: contains auxiliary functions for plotting.
  • ranksets.py: implements Algorithm 2 from the paper to construct rank-sets.
  • run_experiments.py: runs experiments for all input parameters.
  • synthetic.py: generates synthetic data and runs the synthetic experiments in Appendix E of the paper.

Contact & attribution

In case you have questions about the code, you identify potential bugs or you would like us to include additional functionalities, feel free to open an issue or contact Ivi Chatzi.

If you use parts of the code in this repository for your own research purposes, please consider citing:

@inproceedings{chatzi2024prediction,
  title={Prediction-Powered Ranking of Large Language Models},
  author={Ivi Chatzi and Eleni Straitouri and Suhas Thejaswi and Manuel Gomez Rodriguez},
  year={2024},
  booktitle = {Advances in Neural Information Processing Systems},
  publisher = {Curran Associates, Inc.}
  }