rohitsaxena commited on
Commit
2e0f03a
·
verified ·
1 Parent(s): 28b3ca7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -0
README.md CHANGED
@@ -37,3 +37,41 @@ configs:
37
  - split: test
38
  path: data/test-*
39
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  - split: test
38
  path: data/test-*
39
  ---
40
+
41
+ # POSTERSUM Dataset
42
+
43
+ ## Dataset Summary
44
+
45
+ The **POSTERSUM** dataset is a multimodal benchmark designed for the summarization of scientific posters into research paper abstracts. The dataset consists of **16,305** research posters collected from major machine learning conferences, including ICLR, ICML, and NeurIPS, spanning the years **2022-2024**. Each poster is provided in image format along with its corresponding abstract as a summary. This dataset is intended for research in multimodal understanding and summarization tasks, particularly in vision-language models (VLMs) and Multimodal Large Language Models (MLLMs).
46
+
47
+ ## Dataset Details
48
+
49
+ ### Data Fields
50
+ Each record in the dataset contains the following fields:
51
+ - `conference` (*string*): Name of the conference where the research poster was presented (e.g., ICLR, ICML, NeurIPS).
52
+ - `year` (*int*): The year of the conference.
53
+ - `paper_id` (*int*): Conference identifier for the research paper associated with the poster.
54
+ - `title` (*string*): The title of the research paper.
55
+ - `abstract` (*string*): The human-written abstract of the paper, serving as the ground-truth summary for the poster.
56
+ - `topics` (*list of strings*): Machine learning topics related to the research (e.g., Reinforcement Learning, Natural Language Processing, Graph Neural Networks).
57
+ - `image_url` (*string*): URL to the image file of the scientific poster.
58
+
59
+ ### Dataset Statistics
60
+ - **Total number of poster-summary pairs:** 16,305
61
+ - **Total number of unique topics:** 137
62
+ - **Average summary length:** 224 tokens
63
+ - **Train/Validation/Test split:** 10,305 / 3,000 / 3,000
64
+
65
+
66
+ ## Citation
67
+ ```
68
+ @misc{saxena2025postersummultimodalbenchmarkscientific,
69
+ title={PosterSum: A Multimodal Benchmark for Scientific Poster Summarization},
70
+ author={Rohit Saxena and Pasquale Minervini and Frank Keller},
71
+ year={2025},
72
+ eprint={2502.17540},
73
+ archivePrefix={arXiv},
74
+ primaryClass={cs.CV},
75
+ url={https://arxiv.org/abs/2502.17540},
76
+ }
77
+ ```