CZWin32768 commited on
Commit
8a3ea20
·
verified ·
1 Parent(s): 5b52465

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +54 -0
README.md CHANGED
@@ -26,3 +26,57 @@ configs:
26
  - split: test
27
  path: data/test-*
28
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  - split: test
27
  path: data/test-*
28
  ---
29
+
30
+
31
+ # Multi-Solution Countdown Dataset
32
+
33
+ This dataset is from the paper [The Era of Agentic Organization: Learning to Organize with Language Models](https://arxiv.org/abs/2510.26658).
34
+
35
+ ## Dataset Description
36
+
37
+ The Multi-Solution Countdown dataset contains mathematical reasoning problems where the goal is to reach a target number using a set of available numbers and basic arithmetic operations (+, -, *, /). Each problem has multiple valid solutions.
38
+
39
+ ## Dataset Structure
40
+
41
+ | Split | Examples |
42
+ |-------|----------|
43
+ | Train | 22,500 |
44
+ | Test | 400 |
45
+
46
+ ### Features
47
+
48
+ - `index`: Integer identifier
49
+ - `target`: Target number to reach
50
+ - `available_numbers`: List of numbers that can be used
51
+ - `solutions`: List of valid mathematical expressions
52
+
53
+ ### Example
54
+
55
+ ```json
56
+ {
57
+ "index": 1,
58
+ "target": 655,
59
+ "available_numbers": [8, 9, 26, 43, 47, 60, 68, 69, 70, 78, 82, 87],
60
+ "solutions": ["((26-78)+((68+87)+(8*69)))", "(69-(70-(8*82)))", "(43+(68*9))", "((47+68)+(60*9))"]
61
+ }
62
+ ```
63
+
64
+ ## Usage
65
+
66
+ ```python
67
+ from datasets import load_dataset
68
+
69
+ dataset = load_dataset("CZWin32768/multi-solution-countdown")
70
+ ```
71
+
72
+ ## Citation
73
+
74
+ ```bibtex
75
+ @article{chi2025asyncthink,
76
+ title={The Era of Agentic Organization: Learning to Organize with Language Models},
77
+ author={Chi, Zewen and Dong, Li and Dong, Qingxiu and Hao, Yaru and Wu, Xun and Huang, Shaohan and Wei, Furu},
78
+ journal={arXiv preprint arXiv:2510.26658},
79
+ year={2025}
80
+ }
81
+ ```
82
+