mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-24 17:05:03 +00:00
fix: Unify Prompts (#254)
* remove cot * fix prompt template * fix pool matrix * spiral matrix fixed
This commit is contained in:
parent
976e1710a6
commit
2f9d94c1e7
31 changed files with 65 additions and 354 deletions
|
|
@ -13,17 +13,7 @@ from ..factory import ProceduralDataset, register_dataset
|
|||
|
||||
QUESTION_TEMPLATE = """Given a square matrix, your job is to rotate it clockwise.
|
||||
|
||||
Example:
|
||||
|
||||
Input: Rotate the matrix below by 90 degrees clockwise:
|
||||
1 2 3
|
||||
4 5 6
|
||||
7 8 9
|
||||
|
||||
Output:
|
||||
7 4 1
|
||||
8 5 2
|
||||
9 6 3
|
||||
Your output should be a matrix in the same format as the input.
|
||||
|
||||
Rotate the matrix below by {degrees} degrees clockwise:
|
||||
{matrix}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue