Download dataset from the link: Dataset
Use the following command to create a new Conda environment named robustgymnasium with Python 3.10:
conda create -n paperbench python=3.10
conda activate paperbench
pip install -r requirements.txt
export CUDA_VISIBLE_DEVICES=4,5,6,7
python -m vllm.entrypoints.openai.api_server \
--model meta-llama/Llama-4-Scout-17B-16E-Instruct \
--host 0.0.0.0 \
--port 8002 \
--tensor-parallel-size 4 \
--max-model-len 328816 \
--dtype auto \
--gpu-memory-utilization 0.90 \
--trust-remote-code
bash paperbench/personalization/eva_personalization.sh
bash paperbench/privacy/eva_privacy.sh
If you use PAPerBench in your research, please cite:
@misc{paperbench2025,
title={The Effect of Context Length on Privacy and Personalization: Revealing a Scaling Gap},
author={Shangding Gu},
year = {2025},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/SafeRL-Lab/PAPerBench}},
}