An interactive visualization of my journey through the Divergent Association Task (DAT) creativity game, showcasing the hillclimbing optimization technique.
Each word replacement represents a "hill climbing" step where words with lower semantic distances to other words in the set were systematically replaced with words that had higher distances, improving the overall creativity score.
Hillclimbing is a local search optimization algorithm that continuously moves towards better solutions by making incremental improvements. Think of it like climbing a hill in foggy weather - you can only see your immediate surroundings, so you always take the step that goes uphill.
Maximize the sum of semantic distances between all word pairs
Replace one word at a time with alternatives from vocabulary
Stop when no single word replacement improves the score
Despite these theoretical limitations, the hillclimbing approach was highly effective for the DAT creativity game, achieving a score of 95.08 and ranking in the 99.98th percentile.
This success suggests that the semantic distance landscape for this problem has favorable properties for local search, with relatively few problematic local optima.
Interactive matrix showing semantic distances between final word pairs
stochastic | fuselage | throne | corporate | arthritis | chilli | lens | |
---|---|---|---|---|---|---|---|
stochastic | 0 |
103 |
100 |
93 |
94 |
98 |
94 |
fuselage | 103 |
0 |
94 |
98 |
96 |
91 |
79 |
throne | 100 |
94 |
0 |
95 |
98 |
101 |
98 |
corporate | 93 |
98 |
95 |
0 |
97 |
100 |
92 |
arthritis | 94 |
96 |
98 |
97 |
0 |
86 |
87 |
chilli | 98 |
91 |
101 |
100 |
86 |
0 |
104 |
lens | 94 |
79 |
98 |
92 |
87 |
104 |
0 |
Understanding the Divergent Association Task
The Divergent Association Task (DAT) is a creativity assessment that measures your ability to think of diverse, unrelated concepts. Players must generate 10 words that are as semantically distant from each other as possible.
The challenge lies in finding words that share minimal conceptual overlap, requiring creative thinking and broad knowledge across different domains.