Datasets:

Modalities:
Text
Formats:
json
Size:
< 1K
ArXiv:
Libraries:
Datasets
pandas
License:

Improve dataset card: Add task category, GitHub link, and sample usage

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +18 -1
README.md CHANGED
@@ -1,4 +1,21 @@
1
  ---
2
  license: cc-by-sa-4.0
 
 
3
  ---
4
- original paper: https://huggingface.co/papers/2510.04201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-sa-4.0
3
+ task_categories:
4
+ - text-to-image
5
  ---
6
+
7
+ # World-To-Image: NICE Benchmark Dataset
8
+
9
+ This repository contains the `NICE` benchmark dataset presented in the paper [World-To-Image: Grounding Text-to-Image Generation with Agent-Driven World Knowledge](https://huggingface.co/papers/2510.04201).
10
+
11
+ * **Paper:** [World-To-Image: Grounding Text-to-Image Generation with Agent-Driven World Knowledge](https://huggingface.co/papers/2510.04201)
12
+ * **Code:** https://github.com/mhson-kyle/World-To-Image
13
+
14
+ ## Sample Usage
15
+
16
+ You may access the NICE Benchmark dataset through the following code:
17
+
18
+ ```python
19
+ from datasets import load_dataset
20
+ dataset = load_dataset("mhsonkyle/NICE")
21
+ ```