Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -9,6 +9,7 @@ tags:
|
|
| 9 |
- human-difficulty
|
| 10 |
- orthographic-constraints
|
| 11 |
- llm-evaluation
|
|
|
|
| 12 |
size_categories:
|
| 13 |
- n<1K
|
| 14 |
task_categories:
|
|
@@ -35,9 +36,18 @@ dataset_info:
|
|
| 35 |
|
| 36 |
Human solve-frequency data for 58 New York Times Spelling Bee puzzles (June–July 2025), sampled from 10,000 users per puzzle. Serves as ground truth for evaluating LLM orthographic constraint satisfaction.
|
| 37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
## Task
|
| 39 |
|
| 40 |
-
The Spelling Bee
|
| 41 |
|
| 42 |
## Schema
|
| 43 |
|
|
@@ -57,14 +67,26 @@ from datasets import load_dataset
|
|
| 57 |
ds = load_dataset("redasers/spelling-bee-human-difficulty")
|
| 58 |
puzzle = ds["train"][0]
|
| 59 |
|
| 60 |
-
#
|
| 61 |
-
|
| 62 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
```
|
| 64 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
## Associated Paper
|
| 66 |
|
| 67 |
-
|
| 68 |
|
| 69 |
## License
|
| 70 |
|
|
|
|
| 9 |
- human-difficulty
|
| 10 |
- orthographic-constraints
|
| 11 |
- llm-evaluation
|
| 12 |
+
- benchmark
|
| 13 |
size_categories:
|
| 14 |
- n<1K
|
| 15 |
task_categories:
|
|
|
|
| 36 |
|
| 37 |
Human solve-frequency data for 58 New York Times Spelling Bee puzzles (June–July 2025), sampled from 10,000 users per puzzle. Serves as ground truth for evaluating LLM orthographic constraint satisfaction.
|
| 38 |
|
| 39 |
+
| Stat | Value |
|
| 40 |
+
|------|-------|
|
| 41 |
+
| Puzzles | 58 |
|
| 42 |
+
| Date range | 2025-06-02 to 2025-07-29 |
|
| 43 |
+
| Total answer words | 2,710 |
|
| 44 |
+
| Words per puzzle | 22–72 (mean 46.7) |
|
| 45 |
+
| Word length | 4–13 characters |
|
| 46 |
+
| Users sampled per puzzle | 10,000 |
|
| 47 |
+
|
| 48 |
## Task
|
| 49 |
|
| 50 |
+
The NYT Spelling Bee presents 7 letters arranged in a honeycomb. Players must generate valid English words (4+ letters) using only those letters, with one designated center letter appearing in every word. Letters may be reused.
|
| 51 |
|
| 52 |
## Schema
|
| 53 |
|
|
|
|
| 67 |
ds = load_dataset("redasers/spelling-bee-human-difficulty")
|
| 68 |
puzzle = ds["train"][0]
|
| 69 |
|
| 70 |
+
# Print puzzle setup
|
| 71 |
+
print(f"Date: {puzzle['date']}")
|
| 72 |
+
print(f"Letters: {puzzle['outer_letters']} (center: {puzzle['center_letter']})")
|
| 73 |
+
|
| 74 |
+
# Find the hardest and easiest words
|
| 75 |
+
words = puzzle["answer_words"]
|
| 76 |
+
counts = puzzle["answer_user_counts"]
|
| 77 |
+
pairs = sorted(zip(words, counts), key=lambda x: x[1])
|
| 78 |
+
|
| 79 |
+
print(f"\nHardest: {pairs[0][0]} ({pairs[0][1] / 10_000:.1%} solve rate)")
|
| 80 |
+
print(f"Easiest: {pairs[-1][0]} ({pairs[-1][1] / 10_000:.1%} solve rate)")
|
| 81 |
```
|
| 82 |
|
| 83 |
+
## Data Source
|
| 84 |
+
|
| 85 |
+
Human solve frequencies were collected from the NYT Spelling Bee's public statistics, which report how many users found each answer word. A random sample of 10,000 users per puzzle provides the frequency counts. The center letter is uniquely determined as the only letter appearing in all answer words.
|
| 86 |
+
|
| 87 |
## Associated Paper
|
| 88 |
|
| 89 |
+
Bryan E. Tuck and Rakesh M. Verma. [Orthographic Constraint Satisfaction and Human Difficulty Alignment in Large Language Models](https://arxiv.org/abs/2511.21086). arXiv:2511.21086, 2025.
|
| 90 |
|
| 91 |
## License
|
| 92 |
|