File size: 2,625 Bytes
a7e9ffc
 
 
 
 
 
f8e89b4
 
 
 
 
42c4865
 
 
f8e89b4
 
 
a7e9ffc
f8e89b4
f3fb7ba
f8e89b4
f3fb7ba
f8e89b4
f3fb7ba
 
 
f8e89b4
f3fb7ba
f8e89b4
f3fb7ba
f8e89b4
 
 
 
 
f3fb7ba
 
f8e89b4
f3fb7ba
f8e89b4
 
 
f3fb7ba
f8e89b4
 
f3fb7ba
 
f8e89b4
f3fb7ba
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
license: mit
task_categories:
- text-classification
language:
- en
tags:
- creative problem solving
- puzzles
- fixation effect
- large language models
- only connect
- quiz show
- connecting walls
pretty_name: Only Connect Wall Dataset
size_categories:
- n<1K
---
# Only Connect Wall (OCW) Dataset

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.

## Usage

```python
# pip install datasets
from datasets import load_dataset

dataset = load_dataset("TaatiTeam/OCW")

# The dataset can be used like any other HuggingFace dataset
# E.g. get the wall_id of the first example in the train set
dataset["train"]["wall_id"][0]
# or get the words of the first 10 examples in the test set
dataset["test"]["words"][0:10]
```

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:

```python
# pip install datasets
from datasets import load_dataset

ocw_randomized = load_dataset("TaatiTeam/OCW", "ocw_randomized")
ocw_wordnet = load_dataset("TaatiTeam/OCW", "ocw_wordnet")
```

See [our paper](https://arxiv.org/abs/2306.11167) for more details.

## 📝 Citing

If you use the Only Connect dataset in your work, please consider citing our paper:

```
@article{Naeini2023LargeLM,
    title        = {Large Language Models are Fixated by Red Herrings: Exploring Creative Problem Solving and Einstellung Effect using the Only Connect Wall Dataset},
    author       = {Saeid Alavi Naeini and Raeid Saqur and Mozhgan Saeidi and John Giorgi and Babak Taati},
    year         = 2023,
    journal      = {ArXiv},
    volume       = {abs/2306.11167},
    url          = {https://api.semanticscholar.org/CorpusID:259203717}
}
```

## 🙏 Acknowledgements

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.