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
|
|
@ -102,19 +102,7 @@ To *compute* a program, we must rewrite neighbor tokens, using the rules:
|
|||
B# #B ... becomes ... nothing
|
||||
|
||||
In other words, whenever two neighbor tokens have their '#' facing each-other,
|
||||
they must be rewritten according to the corresponding rule. For example, the
|
||||
first example shown here is computed as:
|
||||
|
||||
B# A# #B #A B# =
|
||||
B# #B A# #A B# =
|
||||
A# #A B# =
|
||||
B#
|
||||
|
||||
The steps were:
|
||||
1. We replaced `A# #B` by `#B A#`.
|
||||
2. We replaced `B# #B` by nothing.
|
||||
3. We replaced `A# #A` by nothing.
|
||||
The final result was just `B#`.
|
||||
they must be rewritten according to the corresponding rule.
|
||||
|
||||
Now, consider the following program:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue