Add library_name and pipeline_tag to metadata
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,29 +1,52 @@
|
|
| 1 |
---
|
| 2 |
-
license: mit
|
| 3 |
-
datasets:
|
| 4 |
-
- Forceless/UltraPresent
|
| 5 |
base_model:
|
| 6 |
- Qwen/Qwen3.5-9B
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
|
|
|
| 8 |
# DeepPresenter-9B
|
| 9 |
|
| 10 |
-
**Project**: https://github.com/icip-cas/PPTAgent
|
| 11 |
-
**Paper**: https://arxiv.org/abs/2602.22839
|
| 12 |
|
| 13 |
## Model Overview
|
| 14 |
|
| 15 |
-
**DeepPresenter-9B** is a 9B-parameter language model designed for **automatic presentation generation**. It serves as the core model in the **DeepPresenter** framework, enabling agentic workflows that generate structured slide presentations from natural language instructions.
|
|
|
|
|
|
|
| 16 |
|
| 17 |
## Usage
|
| 18 |
|
| 19 |
-
DeepPresenter-9B is intended to be used with the **PPTAgent framework** for full presentation generation:
|
| 20 |
|
| 21 |
```bash
|
|
|
|
| 22 |
uvx pptagent onboard
|
| 23 |
|
|
|
|
| 24 |
uvx pptagent generate "Single Page with Title: Hello World" -o hello.pptx
|
| 25 |
```
|
| 26 |
|
| 27 |
## Performance
|
| 28 |
|
| 29 |
-

|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
base_model:
|
| 3 |
- Qwen/Qwen3.5-9B
|
| 4 |
+
datasets:
|
| 5 |
+
- Forceless/UltraPresent
|
| 6 |
+
license: mit
|
| 7 |
+
library_name: transformers
|
| 8 |
+
pipeline_tag: text-generation
|
| 9 |
---
|
| 10 |
+
|
| 11 |
# DeepPresenter-9B
|
| 12 |
|
| 13 |
+
**Project**: [https://github.com/icip-cas/PPTAgent](https://github.com/icip-cas/PPTAgent)
|
| 14 |
+
**Paper**: [DeepPresenter: Environment-Grounded Reflection for Agentic Presentation Generation](https://arxiv.org/abs/2602.22839)
|
| 15 |
|
| 16 |
## Model Overview
|
| 17 |
|
| 18 |
+
**DeepPresenter-9B** is a 9B-parameter language model designed for **automatic presentation generation**. It serves as the core model in the **DeepPresenter** framework, enabling agentic workflows that generate structured slide presentations from natural language instructions.
|
| 19 |
+
|
| 20 |
+
Unlike traditional agents that rely on fixed templates, DeepPresenter uses environment-grounded reflection. This allows the system to condition its generation process on perceptual artifact states (like rendered slides), enabling it to autonomously plan, render, and revise slides to correct presentation-specific issues during execution.
|
| 21 |
|
| 22 |
## Usage
|
| 23 |
|
| 24 |
+
DeepPresenter-9B is intended to be used with the **PPTAgent framework** for full presentation generation. You can use it via the CLI:
|
| 25 |
|
| 26 |
```bash
|
| 27 |
+
# Interactive configuration (first time)
|
| 28 |
uvx pptagent onboard
|
| 29 |
|
| 30 |
+
# Generate presentation
|
| 31 |
uvx pptagent generate "Single Page with Title: Hello World" -o hello.pptx
|
| 32 |
```
|
| 33 |
|
| 34 |
## Performance
|
| 35 |
|
| 36 |
+

|
| 37 |
+
|
| 38 |
+
## Citation
|
| 39 |
+
|
| 40 |
+
If you find this work useful, please cite the paper:
|
| 41 |
+
|
| 42 |
+
```bibtex
|
| 43 |
+
@misc{zheng2026deeppresenterenvironmentgroundedreflectionagentic,
|
| 44 |
+
title={DeepPresenter: Environment-Grounded Reflection for Agentic Presentation Generation},
|
| 45 |
+
author={Hao Zheng and Guozhao Mo and Xinru Yan and Qianhao Yuan and Wenkai Zhang and Xuanang Chen and Yaojie Lu and Hongyu Lin and Xianpei Han and Le Sun},
|
| 46 |
+
year={2026},
|
| 47 |
+
eprint={2602.22839},
|
| 48 |
+
archivePrefix={arXiv},
|
| 49 |
+
primaryClass={cs.AI},
|
| 50 |
+
url={https://arxiv.org/abs/2602.22839},
|
| 51 |
+
}
|
| 52 |
+
```
|