Datasets:
Improve dataset card with paper, code, and sample usage
Browse filesHi! I'm Niels from the community science team at Hugging Face.
I noticed this dataset card could benefit from more documentation. This PR adds:
- Links to the paper, project page, and GitHub repository.
- A brief description of the benchmark based on the abstract.
- A sample usage code snippet found in the official GitHub repository.
- The BibTeX citation for the paper.
These additions will make the dataset more discoverable and easier to use for the community.
README.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
dataset_info:
|
| 3 |
features:
|
| 4 |
- name: query
|
|
@@ -36,11 +43,32 @@ configs:
|
|
| 36 |
data_files:
|
| 37 |
- split: train
|
| 38 |
path: data/train-*
|
| 39 |
-
license: mit
|
| 40 |
-
task_categories:
|
| 41 |
-
- text-generation
|
| 42 |
-
language:
|
| 43 |
-
- en
|
| 44 |
-
size_categories:
|
| 45 |
-
- n<1K
|
| 46 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: mit
|
| 5 |
+
size_categories:
|
| 6 |
+
- n<1K
|
| 7 |
+
task_categories:
|
| 8 |
+
- text-generation
|
| 9 |
dataset_info:
|
| 10 |
features:
|
| 11 |
- name: query
|
|
|
|
| 43 |
data_files:
|
| 44 |
- split: train
|
| 45 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
---
|
| 47 |
+
|
| 48 |
+
# CREATE: Testing LLMs for Associative Creativity
|
| 49 |
+
|
| 50 |
+
[**Project Page**](https://manyawadhwa.github.io/projects/create/) | [**Github**](https://github.com/ManyaWadhwa/CREATE) | [**Paper**](https://huggingface.co/papers/2603.09970)
|
| 51 |
+
|
| 52 |
+
CREATE is a benchmark designed to evaluate models' capacity for creative associative reasoning: the ability to draw novel yet meaningful connections between concepts. It requires models to generate sets of paths connecting concepts in their parametric knowledge. Paths are evaluated based on specificity (distinctiveness and closeness of the connection) and diversity.
|
| 53 |
+
|
| 54 |
+
## Sample Usage
|
| 55 |
+
|
| 56 |
+
You can load the benchmark questions using the `datasets` library:
|
| 57 |
+
|
| 58 |
+
```python
|
| 59 |
+
from datasets import load_dataset
|
| 60 |
+
|
| 61 |
+
data = load_dataset('wadhma/CREATE')['train'].to_pandas()
|
| 62 |
+
print(data['query']) ## the benchmark questions
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
+
## Citation
|
| 66 |
+
|
| 67 |
+
```bibtex
|
| 68 |
+
@InProceedings{Wadhwa-Et-Al-2026:CREATE,
|
| 69 |
+
title = {CREATE: Testing LLMs for Associative Creativity},
|
| 70 |
+
author = {Manya Wadhwa and Tiasa Singha Roy and Harvey Lederman and Junyi Jessy Li and Greg Durrett},
|
| 71 |
+
booktitle = {arXiv},
|
| 72 |
+
year = {2026},
|
| 73 |
+
}
|
| 74 |
+
```
|