dittops commited on
Commit
45c1a13
·
verified ·
1 Parent(s): 6cd2808

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +147 -0
README.md ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: Rank
5
+ dtype: int64
6
+ - name: Puzzles
7
+ dtype: string
8
+ - name: AMT (s)
9
+ dtype: float64
10
+ - name: Solved rate
11
+ dtype: string
12
+ - name: 1-sigma Mean (s)
13
+ dtype: float64
14
+ - name: 1-sigma STD (s)
15
+ dtype: float64
16
+ splits:
17
+ - name: train
18
+ num_examples: 1362
19
+ task_categories:
20
+ - question-answering
21
+ - text-generation
22
+ language:
23
+ - en
24
+ tags:
25
+ - mathematical-reasoning
26
+ - tree-of-thoughts
27
+ - test-time-compute
28
+ - game-of-24
29
+ size_categories:
30
+ - 1K<n<10K
31
+ license: mit
32
+ ---
33
+
34
+ > **Bud Ecosystem mirror** of [`test-time-compute/game-of-24`](https://huggingface.co/datasets/test-time-compute/game-of-24) — a verbatim copy for offline, reproducible model evaluation. License **unchanged (MIT (test-time-compute/game-of-24); Apache-2.0 (nlile/24-game))**; all rights remain with the original authors.
35
+
36
+ # Game of 24 Dataset
37
+
38
+ ## Dataset Description
39
+
40
+ The Game of 24 is a mathematical reasoning puzzle where players must use four numbers and basic arithmetic operations (+, -, *, /) to obtain the result 24. Each number must be used exactly once.
41
+
42
+ This dataset contains 1,361 unique Game of 24 puzzles ranked by difficulty based on human performance from Amazon Mechanical Turk studies.
43
+
44
+ ### Example
45
+
46
+ **Input:** `4 5 6 10`
47
+
48
+ **Output:** `(5 * (10 - 4)) - 6 = 24`
49
+
50
+ **Step-by-step solution:**
51
+ ```
52
+ 10 - 4 = 6 (left: 5 6 6)
53
+ 5 * 6 = 30 (left: 6 30)
54
+ 30 - 6 = 24 (left: 24)
55
+ Answer: (5 * (10 - 4)) - 6 = 24
56
+ ```
57
+
58
+ ## Dataset Structure
59
+
60
+ ### Data Fields
61
+
62
+ - `Rank`: Difficulty ranking (1 = easiest, 1361 = hardest)
63
+ - `Puzzles`: Four numbers separated by spaces (e.g., "4 5 6 10")
64
+ - `AMT (s)`: Average time for humans to solve (seconds)
65
+ - `Solved rate`: Percentage of humans who successfully solved the puzzle
66
+ - `1-sigma Mean (s)`: Mean solving time within 1 standard deviation
67
+ - `1-sigma STD (s)`: Standard deviation of solving time
68
+
69
+ ### Data Splits
70
+
71
+ The original Tree of Thoughts paper uses indices 900-1000 (100 puzzles) for evaluation.
72
+
73
+ - **Easy puzzles** (rank 1-300): 95-99% human solve rate, ~4-6 seconds
74
+ - **Medium puzzles** (rank 300-900): 85-95% human solve rate, ~6-10 seconds
75
+ - **Hard puzzles** (rank 900-1100): 80-90% human solve rate, ~10-15 seconds
76
+ - **Very hard puzzles** (rank 1100-1361): 20-80% human solve rate, 15-200+ seconds
77
+
78
+ ## Source Data
79
+
80
+ This dataset is from the official Tree of Thoughts (ToT) repository:
81
+ - Paper: [Tree of Thoughts: Deliberate Problem Solving with Large Language Models](https://arxiv.org/abs/2305.10601)
82
+ - Repository: https://github.com/princeton-nlp/tree-of-thought-llm
83
+ - Authors: Shunyu Yao, Dian Yu, Jeffrey Zhao, Izhak Shafran, Thomas L. Griffiths, Yuan Cao, Karthik Narasimhan
84
+
85
+ ### Human Performance Collection
86
+
87
+ Puzzles were ranked based on human performance data collected via Amazon Mechanical Turk, measuring:
88
+ - Success rate (percentage of correct solutions)
89
+ - Solving time (average time to solution)
90
+
91
+ ## Usage
92
+
93
+ ### Loading the Dataset
94
+
95
+ ```python
96
+ from datasets import load_dataset
97
+
98
+ dataset = load_dataset("test-time-compute/game-of-24")
99
+ ```
100
+
101
+ ### Paper Evaluation Subset
102
+
103
+ To replicate the Tree of Thoughts paper evaluation:
104
+
105
+ ```python
106
+ # Load indices 900-1000 (100 hard puzzles)
107
+ eval_subset = dataset['train'].select(range(900, 1000))
108
+ ```
109
+
110
+ ### Task Format
111
+
112
+ Each puzzle requires:
113
+ 1. **Input**: Four numbers (e.g., "4 5 6 10")
114
+ 2. **Output**: A valid mathematical expression using each number exactly once that equals 24
115
+ 3. **Verification**: Check that all four numbers are used and the expression evaluates to 24
116
+
117
+ ## Benchmark Results
118
+
119
+ From the Tree of Thoughts paper (indices 900-1000):
120
+
121
+ | Method | Success Rate | Model |
122
+ |--------|-------------|-------|
123
+ | IO (100 samples) | 7.3% | GPT-4 |
124
+ | CoT (100 samples) | 4.0% | GPT-4 |
125
+ | ToT (b=5) | 74.0% | GPT-4 |
126
+
127
+ Where:
128
+ - **IO**: Input-output prompting with 100 samples
129
+ - **CoT**: Chain-of-thought prompting with 100 samples
130
+ - **ToT**: Tree of Thoughts with beam width 5
131
+
132
+ ## Citation
133
+
134
+ If you use this dataset, please cite the original Tree of Thoughts paper:
135
+
136
+ ```bibtex
137
+ @article{yao2023tree,
138
+ title={Tree of Thoughts: Deliberate Problem Solving with Large Language Models},
139
+ author={Yao, Shunyu and Yu, Dian and Zhao, Jeffrey and Shafran, Izhak and Griffiths, Thomas L and Cao, Yuan and Narasimhan, Karthik},
140
+ journal={arXiv preprint arXiv:2305.10601},
141
+ year={2023}
142
+ }
143
+ ```
144
+
145
+ ## License
146
+
147
+ MIT License (same as original Tree of Thoughts repository)