mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
fix: Unify Prompts (#254)
* remove cot * fix prompt template * fix pool matrix * spiral matrix fixed
This commit is contained in:
parent
49db4ed761
commit
01e1c8f9af
31 changed files with 65 additions and 354 deletions
|
|
@ -9,20 +9,6 @@ from ..factory import ProceduralDataset, register_dataset
|
|||
|
||||
QUESTION_TEMPLATE = """Your task is to compute an exponentiation of a number.
|
||||
|
||||
Example:
|
||||
- Input: Compute 2^3
|
||||
- Output: 8
|
||||
- Explanation:
|
||||
- 2^3 = 2 * 2 * 2 = 8
|
||||
- Therefore, the final answer is 8
|
||||
|
||||
Example:
|
||||
- Input: Compute 412.5^3
|
||||
- Output: 70189453.125
|
||||
- Explanation:
|
||||
- 412.5^3 = 412.5 * 412.5 * 412.5 = 70189453.125
|
||||
- Therefore, the final answer is 70189453.125
|
||||
|
||||
Compute {base}^{exponent}
|
||||
"""
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue