Update README.md
Browse files
README.md
CHANGED
@@ -19,13 +19,39 @@ dataset_info:
|
|
19 |
sequence: image
|
20 |
splits:
|
21 |
- name: test
|
22 |
-
num_bytes: 3658370666
|
23 |
num_examples: 1000
|
24 |
download_size: 3621645033
|
25 |
-
dataset_size: 3658370666
|
26 |
configs:
|
27 |
- config_name: default
|
28 |
data_files:
|
29 |
- split: test
|
30 |
path: data/test-*
|
|
|
31 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
sequence: image
|
20 |
splits:
|
21 |
- name: test
|
22 |
+
num_bytes: 3658370666
|
23 |
num_examples: 1000
|
24 |
download_size: 3621645033
|
25 |
+
dataset_size: 3658370666
|
26 |
configs:
|
27 |
- config_name: default
|
28 |
data_files:
|
29 |
- split: test
|
30 |
path: data/test-*
|
31 |
+
license: apache-2.0
|
32 |
---
|
33 |
+
|
34 |
+
# CreatiDesign Benchmark
|
35 |
+
|
36 |
+
## Overview
|
37 |
+
|
38 |
+
CreatiDesign Benchmark is a comprehensive benchmark for evaluating multi-conditional graphic design generation models. It contains 1,000 carefully curated samples spanning real-world design scenarios, including movie posters, product advertisements, brand promotions, and social media content. The benchmark focuses on assessing models' fine-grained controllability over multiple heterogeneous conditions—such as primary visual elements (main images), secondary visual elements (decorative objects), and textual elements—while also measuring overall visual quality and strict adherence to user intent.
|
39 |
+
|
40 |
+
## Download and Usage
|
41 |
+
|
42 |
+
```python
|
43 |
+
from datasets import load_dataset
|
44 |
+
dataset_repo = 'HuiZhang0812/CreatiDesign_benchmark'
|
45 |
+
test_dataset = load_dataset(dataset_path, split='test')
|
46 |
+
```
|
47 |
+
To evaluate your model's graphic design generation capabilities using the CreatiDesign Benchmark, please follow [CreatiDesign](https://github.com/HuiZhang0812/CreatiDesign).
|
48 |
+
|
49 |
+
|
50 |
+
```
|
51 |
+
@article{zhang2025creatidesign,
|
52 |
+
title={CreatiDesign: A Unified Multi-Conditional Diffusion Transformer for Creative Graphic Design},
|
53 |
+
author={Zhang, Hui and Hong, Dexiang and Yang, Maoke and Chen, Yutao and Zhang, Zhao and Shao, Jie and Wu, Xinglong and Wu, Zuxuan and Jiang, Yu-Gang},
|
54 |
+
journal={arXiv preprint arXiv:2505.19114},
|
55 |
+
year={2025}
|
56 |
+
}
|
57 |
+
```
|