P2P is an AI-powered tool that automatically converts academic research papers into professional conference posters. This repository contains the code for generating and evaluating these posters, leveraging large language models to extract key information and create visually appealing presentations.
The full research paper is available on arXiv.
Note: Due to the large size of the evaluation and training datasets, only simple samples are included in this repository. The complete datasets are available on HuggingFace:
- P2PInstruct - Training dataset
- P2PEval - Benchmark dataset
main.py
: Main entry point for generating a poster from a single paperstart.py
: Batch processing script for generating posters from multiple papersend.py
: Evaluation coordinator that processes generated postersevalv2.py
: Core evaluation logic with metrics and comparison methodsfigure_detection.py
: Utility for detecting and extracting figures from PDFs
-
poster/
: Core poster generation logicposter.py
: Main poster generation implementationfigures.py
: Figure extraction and processing utilitiescompress.py
: Image compression utilitiesloader.py
: PDF loading utilities
-
eval/
: Evaluation tools and resourceseval_checklist.py
: Checklist-based evaluation implementationpredict_with_xgboost.py
: ML-based poster quality predictioncommon.yaml
: Common evaluation parametersxgboost_model.joblib
: Pre-trained evaluation model
- Python 3.10+
- Dependencies listed in
requirements.txt
Install dependencies:
pip install -r requirements.txt
To generate a poster from a single paper:
# Deploy figure_detection first
python main.py --url="URL_TO_PDF" --pdf="path/to/paper.pdf" --model="gpt-4o-mini" --output="output/poster.json"
--url
: URL for PDF processing service (detecting and extracting figures)--pdf
: Path to the local PDF file--model
: LLM model to use (default: gpt-4o-mini)--output
: Output file path (default: poster.json)
poster.json
: JSON representation of the posterposter.html
: HTML version of the posterposter.png
: PNG image of the poster
To generate posters for multiple papers:
- Organize your papers in a directory structure:
eval/data/
└─ paper_id_1/
└─ paper.pdf
└─ paper_id_2/
└─ paper.pdf
...
-
Edit
start.py
to configure:url
: URL for PDF processing serviceinput_dir
: Directory containing papers (default: "eval/data")models
: List of AI models to use for generation
-
Run the batch generation script:
python start.py
Generated posters will be saved to:
eval/temp-v2/{model_name}/{paper_id}/
└─ poster.json
└─ poster.html
└─ poster.png
To evaluate generated posters:
- Ensure reference materials exist:
eval/data/{paper_id}/
└─ poster.png (reference poster)
└─ checklist.yaml (evaluation checklist)
- Run the evaluation script:
python end.py
Evaluation results will be saved to eval/temp-v2/results.jsonl
.
If you find our work useful, please consider citing P2P:
@misc{sun2025p2pautomatedpapertopostergeneration,
title={P2P: Automated Paper-to-Poster Generation and Fine-Grained Benchmark},
author={Tao Sun and Enhao Pan and Zhengkai Yang and Kaixin Sui and Jiajun Shi and Xianfu Cheng and Tongliang Li and Wenhao Huang and Ge Zhang and Jian Yang and Zhoujun Li},
year={2025},
eprint={2505.17104},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2505.17104},
}