Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,70 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
task_categories:
|
4 |
+
- text-classification
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
tags:
|
8 |
+
- creative problem solving
|
9 |
+
- puzzles
|
10 |
+
- fixation effect
|
11 |
+
- large language models
|
12 |
+
- only connect
|
13 |
+
- quiz show
|
14 |
+
- connecting walls
|
15 |
+
pretty_name: Only Connect Wall Dataset
|
16 |
+
size_categories:
|
17 |
+
- n<1K
|
18 |
+
---
|
19 |
+
|
20 |
+
<h1>
|
21 |
+
<img alt="Alt text" src="./rh-moustouche-hat.jpg" style="display:inline-block; vertical-align:middle" />
|
22 |
+
Only Connect Wall (OCW) Dataset
|
23 |
+
</h1>
|
24 |
+
|
25 |
+
The Only Connect Wall (OCW) dataset contains 618 _"Connecting Walls"_ from the [Round 3: Connecting Wall](https://en.wikipedia.org/wiki/Only_Connect#Round_3:_Connecting_Wall) segment of the [Only Connect quiz show](https://en.wikipedia.org/wiki/Only_Connect), collected from 15 seasons' worth of episodes. Each wall contains the ground-truth __groups__ and __connections__ as well as recorded human performance. Please see [our paper](https://arxiv.org/abs/2306.11167) and [GitHub repo](https://github.com/TaatiTeam/OCW) for more details about the dataset and its motivations.
|
26 |
+
|
27 |
+
## Usage
|
28 |
+
|
29 |
+
```python
|
30 |
+
# pip install datasets
|
31 |
+
from datasets import load_dataset
|
32 |
+
|
33 |
+
dataset = load_dataset("TaatiTeam/OCW")
|
34 |
+
|
35 |
+
# The dataset can be used like any other HuggingFace dataset
|
36 |
+
# E.g. get the wall_id of the first example in the train set
|
37 |
+
dataset["train"]["wall_id"][0]
|
38 |
+
# or get the words of the first 10 examples in the test set
|
39 |
+
dataset["test"]["words"][0:10]
|
40 |
+
```
|
41 |
+
|
42 |
+
We also provide two different versions of the dataset where the red herrings in each wall have been significantly reduced (`ocw_randomized`) or removed altogether (`ocw_wordnet`) which can be loaded like:
|
43 |
+
|
44 |
+
```python
|
45 |
+
# pip install datasets
|
46 |
+
from datasets import load_dataset
|
47 |
+
|
48 |
+
ocw_randomized = load_dataset("TaatiTeam/OCW", "ocw_randomized")
|
49 |
+
ocw_wordnet = load_dataset("TaatiTeam/OCW", "ocw_wordnet")
|
50 |
+
```
|
51 |
+
|
52 |
+
See [our paper](https://arxiv.org/abs/2306.11167) for more details.
|
53 |
+
|
54 |
+
## 📝 Citing
|
55 |
+
|
56 |
+
If you use the Only Connect dataset in your work, please consider citing our paper:
|
57 |
+
|
58 |
+
```
|
59 |
+
@article{alavi2024large,
|
60 |
+
title={Large Language Models are Fixated by Red Herrings: Exploring Creative Problem Solving and Einstellung Effect using the Only Connect Wall Dataset},
|
61 |
+
author={Alavi Naeini, Saeid and Saqur, Raeid and Saeidi, Mozhgan and Giorgi, John and Taati, Babak},
|
62 |
+
journal={Advances in Neural Information Processing Systems},
|
63 |
+
volume={36},
|
64 |
+
year={2024}
|
65 |
+
}
|
66 |
+
```
|
67 |
+
|
68 |
+
## 🙏 Acknowledgements
|
69 |
+
|
70 |
+
We would like the thank the maintainers and contributors of the fan-made and run website [https://ocdb.cc/](https://ocdb.cc/) for providing the data for this dataset. We would also like to thank the creators of the Only Connect quiz show for producing such an entertaining and thought-provoking show.
|