NerdyVisky commited on
Commit
4d52687
·
verified ·
1 Parent(s): 89e0320

Updated README.md

Browse files
Files changed (1) hide show
  1. README.md +85 -3
README.md CHANGED
@@ -1,3 +1,85 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - visual-document-retrieval
5
+ tags:
6
+ - real-data
7
+ - lecture-slides
8
+ - document-analysis
9
+ ---
10
+
11
+ # RealSlide: Benchmark for Lecture Slide Analysis
12
+
13
+ This repository contains the RealSlide benchmark dataset, a collection of real lecture slides curated to evaluate models for slide element detection and text query-based slide retrieval. The dataset complements the synthetic dataset generated by the [SynLecSlideGen pipeline](https://github.com/synslidegen/synslidegen_pipeline), as presented in the paper [AI-Generated Lecture Slides for Improving Slide Element Detection and Retrieval](https://huggingface.co/papers/2506.23605). It is designed to test the generalization of models trained on synthetic data to real-world lecture slides.
14
+
15
+ * Project page: [https://synslidegen.github.io/](https://synslidegen.github.io/)
16
+ <!-- * Code (generation pipeline): [https://github.com/synslidegen/synslidegen_pipeline](https://github.com/synslidegen/synslidegen_pipeline) -->
17
+ <!-- * Dataset repository (on GitHub): [https://github.com/synslidegen/realslide_dataset](https://github.com/synslidegen/realslide_dataset) -->
18
+
19
+ ## How to Download:
20
+
21
+ ### Using Git via terminal
22
+ ```bash
23
+ git lfs install
24
+ git clone https://huggingface.co/datasets/nerdyvisky/realslide
25
+ ```
26
+
27
+ ### Using Python
28
+ ```python
29
+ pip install huggingface_hub
30
+ python
31
+ from huggingface_hub import snapshot_download
32
+
33
+ repo_id = "nerdyvisky/realslide" # your full repo path
34
+ local_dir = snapshot_download(repo_id=repo_id, repo_type="dataset")
35
+ ```
36
+
37
+ ## Overview of RealSlide Benchmark
38
+
39
+ The RealSlide benchmark consists of 1050 real-world lecture slides collected from Creative-Commons licensed graduate lecture slide decks. Full list [here](https://docs.google.com/spreadsheets/d/1bX05zEv0hyZ-FAvmyTfdMi8pdsPqv2DQGB_AHmIJIzk/edit?usp=sharing)
40
+ Each slide is manually annotated by human-annotators with Slide Object Detection in COCO Format and Text-based slide summary to aid benchmarking VLMs for Slide Image related tasks.
41
+
42
+
43
+ <!-- ![Overview of RealSlide](https://raw.githubusercontent.com/synslidegen/synslidegen_pipeline/main/code/assets/realslide_overview.jpg) -->
44
+
45
+ ## Dataset Components
46
+
47
+ The dataset includes samples for two main tasks, each with manually verified annotations:
48
+
49
+ <!-- * **RealDet (Slide Element Detection):** Contains real lecture slides with annotations for various elements within slides (e.g., titles, text, images). -->
50
+ <!-- * **RealRet (Text Query-based Slide Retrieval):** Contains real lecture slides suitable for retrieval tasks based on text queries, enabling models to retrieve relevant slides based on textual content. -->
51
+
52
+ <!-- ### RealDet Samples -->
53
+ <!-- <table border="1"> -->
54
+ <!-- <tr> -->
55
+ <!-- <td><img src="https://raw.githubusercontent.com/synslidegen/synslidegen_pipeline/main/code/assets/realdet1.png" alt="RealDet1" width="100%"></td> -->
56
+ <!-- <td><img src="https://raw.githubusercontent.com/synslidegen/synslidegen_pipeline/main/code/assets/realdet2.png" alt="RealDet2" width="100%"></td> -->
57
+ <!-- <td><img src="https://raw.githubusercontent.com/synslidegen/synslidegen_pipeline/main/code/assets/realdet3.png" alt="RealDet3" width="100%"></td> -->
58
+ <!-- </tr> -->
59
+ <!-- </table> -->
60
+
61
+ <!-- ### RealRet Samples -->
62
+ <!-- <table border="1"> -->
63
+ <!-- <tr> -->
64
+ <!-- <td><img src="https://raw.githubusercontent.com/synslidegen/synslidegen_pipeline/main/code/assets/realret1.png" alt="RealRet1" width="100%"></td> -->
65
+ <!-- <td><img src="https://raw.githubusercontent.com/synslidegen/synslidegen_pipeline/main/code/assets/realret2.png" alt="RealRet2" width="100%"></td> -->
66
+ <!-- <td><img src="https://raw.githubusercontent.com/synslidegen/synslidegen_pipeline/main/code/assets/realret3.png" alt="RealRet3" width="100%"></td> -->
67
+ <!-- </tr> -->
68
+ <!-- </table> -->
69
+
70
+ ## Usage
71
+
72
+ This dataset can be used for evaluating models trained on synthetic datasets or for fine-tuning models for lecture slide element detection and retrieval. The data is provided with manually verified annotations, making it suitable for benchmarking and performance evaluation.
73
+
74
+ ## Citation
75
+
76
+ If you use this dataset in your research, please cite the corresponding paper:
77
+
78
+ ```bibtex
79
+ @article{maniyar2025ai,
80
+ title={AI-Generated Lecture Slides for Improving Slide Element Detection and Retrieval},
81
+ author={Maniyar, Suyash and Trivedi, Vishvesh and Mondal, Ajoy and Mishra, Anand and Jawahar, CV},
82
+ journal={arXiv preprint arXiv:2506.23605},
83
+ year={2025}
84
+ }
85
+ ```