File size: 1,792 Bytes
5210cd0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d6a742d
0eb31d3
d6a742d
0eb31d3
7d5aa56
66e4aaf
 
d6a742d
 
 
 
 
 
 
 
 
 
 
 
eb24e92
 
 
 
 
 
 
 
 
 
 
d6a742d
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
dataset_info:
  features:
  - name: filename
    dtype: string
  - name: size
    dtype: int64
  - name: url
    dtype: string
  - name: license
    dtype: string
  - name: title
    dtype: string
  - name: created
    dtype: string
  - name: updated
    dtype: string
  - name: doi
    dtype: string
  - name: checksum
    dtype: string
  splits:
  - name: pptx
    num_bytes: 3925161
    num_examples: 10448
  download_size: 2028492
  dataset_size: 3925161
configs:
- config_name: default
  data_files:
  - split: pptx
    path: data/pptx-*
---

# PPTAgent/Zenodo10K

This is the dataset used in [PPTAgent](https://arxiv.org/abs/2501.03936), crawled from [zenodo](http://zenodo.org).
To the best of our knowledge, it is the **largest presentation dataset** currently available, comprising over 10,000 **PowerPoint (.pptx)** files, all distributed under a clear and compliant license.

For more information, please visit our [github repo](https://github.com/icip-cas/PPTAgent).

```python
dirname = f"zenodo-pptx/pptx/{task['license']}/{task['created'][:4]}/"
basename = f"{task['checksum'][4:]}-{task['filename']}"
filepath = dirname + basename
try:
    open('/tmp/'+basename,'wb').close()
except:
    filepath = dirname + basename[:240] + ".pptx"
```

## Citation
If you find this project helpful, please use the following to cite it:
```bibtex
@misc{zheng2025pptagentgeneratingevaluatingpresentations,
      title={PPTAgent: Generating and Evaluating Presentations Beyond Text-to-Slides}, 
      author={Hao Zheng and Xinyan Guan and Hao Kong and Jia Zheng and Hongyu Lin and Yaojie Lu and Ben He and Xianpei Han and Le Sun},
      year={2025},
      eprint={2501.03936},
      archivePrefix={arXiv},
      primaryClass={cs.AI},
      url={https://arxiv.org/abs/2501.03936}, 
}
```