Add model card metadata and improve README

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +33 -1
README.md CHANGED
@@ -1,3 +1,35 @@
1
  ---
2
  license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ library_name: transformers
4
+ pipeline_tag: text-generation
5
+ ---
6
+
7
+ # AeSlides: Incentivizing Aesthetic Layout in LLM-Based Slide Generation via Verifiable Rewards
8
+
9
+ AeSlides is a reinforcement learning framework designed to improve the aesthetic layout quality of slides generated by Large Language Models (LLMs). This model is based on GLM-4.7-Flash and is optimized to address the "modality gap" in slide generation, where the generation process is text-centric but the quality is judged by visual aesthetics.
10
+
11
+ - **Paper:** [AeSlides: Incentivizing Aesthetic Layout in LLM-Based Slide Generation via Verifiable Rewards](https://arxiv.org/abs/2604.22840)
12
+ - **Repository:** [https://github.com/ympan0508/aeslides](https://github.com/ympan0508/aeslides)
13
+
14
+ ## Methodology
15
+
16
+ AeSlides introduces a suite of programmatically verifiable metrics to quantify slide layout quality, including aspect ratio compliance, whitespace reduction, element collisions, and visual imbalance. These metrics are used as rewards in a GRPO-based reinforcement learning framework to align the model with human aesthetic preferences.
17
+
18
+ With only 5K training prompts, AeSlides significantly improves layout coherence:
19
+ - Aspect ratio compliance: 36% → 85%
20
+ - Whitespace reduction: ↓ 44%
21
+ - Element collisions: ↓ 43%
22
+ - Visual imbalance: ↓ 28%
23
+
24
+ ## Citation
25
+
26
+ If you find this work useful, please cite the paper:
27
+
28
+ ```bibtex
29
+ @article{pan2025aeslides,
30
+ title={AeSlides: Incentivizing Aesthetic Layout in LLM-Based Slide Generation via Verifiable Rewards},
31
+ author={Pan, Yumeng and others},
32
+ journal={arXiv preprint arXiv:2604.22840},
33
+ year={2025}
34
+ }
35
+ ```